Selaa lähdekoodia

20190218玩家状态

suochencheng 7 vuotta sitten
vanhempi
commit
7d2883b8ea

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

@@ -330,4 +330,50 @@ public interface AppConstant {
         Integer CLOSE = 5;
         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;
+
+    }
 }
 }