mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-10-14 21:22:49 +00:00
* Fix AutoFishing crash * Fix all warnings * Remove DotNetZip. * Fix the usage of HttpClient.
11 lines
297 B
C#
11 lines
297 B
C#
namespace MinecraftClient.Mapping
|
|
{
|
|
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;
|
|
}
|
|
}
|