⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 pkstatus.java

📁 一套MMORPG手机网络游戏的服务端
💻 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 + -