mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-11-07 17:36:07 +00:00
31 lines
670 B
C#
31 lines
670 B
C#
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; }
|
|
}
|
|
}
|