2026-02-14 14:35:29 +01:00
|
|
|
namespace PacketLib;
|
|
|
|
|
|
|
|
|
|
public class MapInitPacket {
|
2026-03-12 22:33:35 +01:00
|
|
|
public int[] Connectors { get; set; } // quadruplets (tile1 id, tile2 id, type, owner)
|
|
|
|
|
public int[] YourTiles { get; set; }
|
|
|
|
|
public int[] OpponentTiles { get; set; }
|
2026-02-25 17:05:15 +01:00
|
|
|
public bool UpsideDown { get; set; }
|
2026-02-14 14:35:29 +01:00
|
|
|
}
|