mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-10-14 21:22:49 +00:00
19 lines
455 B
C#
19 lines
455 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
using MinecraftClient.Protocol.Handlers;
|
|||
|
|
|
|||
|
|
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;
|
|||
|
|
}
|
|||
|
|
}
|