OneNightDuel/PacketLib/MapInitPacket.cs

9 lines
No EOL
309 B
C#

namespace PacketLib;
public class MapInitPacket {
public int[] Connectors { get; set; } // quadruplets (tile1 id, tile2 id, type, owner)
public int[] YourTiles { get; set; }
public int[] OpponentTiles { get; set; }
public int[] LitTiles{ get; set; }
public bool UpsideDown { get; set; }
}