8 lines
No EOL
270 B
C#
8 lines
No EOL
270 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 bool UpsideDown { get; set; }
|
|
} |