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

12 lines
297 B
C#
Raw Normal View History

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