Add submodule MinecraftProtocolLibrary

This commit is contained in:
BruceChen 2022-12-23 00:50:20 +08:00
parent 87026e1bfb
commit 3f1de66af3
62 changed files with 1093 additions and 450 deletions

View file

@ -0,0 +1,31 @@
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; }
}
}