1 package net.sourceforge.simplegamenet.connectaline;
2
3 interface CALPacketCodes {
4
5 static int INIT = 0x01000000;
6 static int RESULT_TURN_BY_PLAYER = 0x00000100;
7 static int RESULT_TURN_BY_CLIENT = 0x00000101;
8 static int MAKE_MOVE_BY_PLAYER = 0x01000200;
9 static int MAKE_MOVE_BY_CLIENT = 0x01000201;
10 static int WINNER = 0x01000300;
11 static int REMISE = 0x01000301;
12 static int PLAY_FIELD = 0x01000400;
13
14 }
15
16