@@ -330,4 +330,50 @@ public interface AppConstant {
Integer CLOSE = 5;
}
+
+ /**
+ * 玩家状态
+ */
+ public interface PlayerStatus {
+ * 加入
+ Integer JOIN = 0;
+ * 准备
+ Integer READY = 1;
+ * 开始
+ Integer START = 2;
+ * 结束
+ Integer END = 3;
+ * 结算
+ Integer SETTLEMENT = 4;
+ * 领取奖励
+ Integer RECEIVE = 5;
+ * 未比赛
+ Integer NO_MATCH = 6;
+ * 比赛超时
+ Integer OVERTIME = 7;
+ }