suochencheng пре 7 година
родитељ
комит
7d2883b8ea
1 измењених фајлова са 46 додато и 0 уклоњено
  1. 46 0
      src/main/java/com/izouma/awesomeadmin/constant/AppConstant.java

+ 46 - 0
src/main/java/com/izouma/awesomeadmin/constant/AppConstant.java

@@ -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;
+
+    }
 }