Minecraft-Console-Client/MinecraftClient/Mapping/MapIcon.cs

12 lines
298 B
C#
Raw Normal View History

namespace MinecraftClient.Mapping
2022-09-18 00:18:27 +02:00
{
public record MapIcon
2022-09-18 00:18:27 +02:00
{
public MapIconType Type { get; set; }
public byte X { get; set; }
public byte Z { get; set; }
public byte Direction { get; set; }
public string? DisplayName { get; set; } = null;
2022-09-18 00:18:27 +02:00
}
}