📄 pkstatus.java
字号:
package com.swing.game.crystal.utils;
public interface PKStatus {
/**
* user A send data to notify server that he want to fight with user B
*/
public static final int INITIAL = 0;
/**
* one of the two user has sent his data while the other haven't done this yet,
* so the first person must wait for the second one's upward message
*/
public static final int WAITING = 1;
/**
*
*/
public static final int PKING = 2;
public static final int OVER = -1;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -