2013-09-02 04:01:17 +02:00
|
|
|
package StevenDimDoors.mod_pocketDim;
|
|
|
|
|
|
|
|
public class PacketConstants
|
|
|
|
{
|
|
|
|
private PacketConstants() { }
|
2013-09-03 23:25:58 +02:00
|
|
|
|
|
|
|
public static final String CHANNEL_NAME = "DimDoorsPackets";
|
2013-09-02 04:01:17 +02:00
|
|
|
|
|
|
|
public static final byte CLIENT_JOIN_PACKET_ID = 1;
|
|
|
|
public static final byte CREATE_DIM_PACKET_ID = 2;
|
2013-09-03 23:25:58 +02:00
|
|
|
public static final byte DELETE_DIM_PACKET_ID = 3;
|
|
|
|
public static final byte CREATE_LINK_PACKET_ID = 4;
|
|
|
|
public static final byte DELETE_LINK_PACKET_ID = 5;
|
2013-09-02 04:01:17 +02:00
|
|
|
}
|