6 lines
138 B
C#
6 lines
138 B
C#
|
|
namespace PacketLib;
|
||
|
|
|
||
|
|
public class MapInitPacket {
|
||
|
|
public int[] Connectors { get; set; } // triplets (tile1 id, tile2 id, type)
|
||
|
|
|
||
|
|
}
|