mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-11-07 17:36:07 +00:00
Add submodule MinecraftProtocolLibrary
This commit is contained in:
parent
87026e1bfb
commit
3f1de66af3
62 changed files with 1093 additions and 450 deletions
31
MinecraftClient/Mapping/MapData.cs
Normal file
31
MinecraftClient/Mapping/MapData.cs
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace MinecraftClient.Mapping
|
||||
{
|
||||
public record MapData
|
||||
{
|
||||
public int MapId { init; get; }
|
||||
|
||||
public byte Scale { init; get; }
|
||||
|
||||
public bool TrackingPosition { init; get; }
|
||||
|
||||
public bool Locked { init; get; }
|
||||
|
||||
public List<MapIcon> Icons { init; get; } = new();
|
||||
|
||||
public byte ColumnsUpdated { init; get; }
|
||||
|
||||
public byte RowsUpdated { init; get; }
|
||||
|
||||
public byte MapCoulmnX { init; get; }
|
||||
|
||||
public byte MapRowZ { init; get; }
|
||||
|
||||
public byte[]? Colors { init; get; }
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue