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

📄 plot.java

📁 一套MMORPG手机网络游戏的服务端
💻 JAVA
字号:
package com.swing.game.crystal.utils;

/**
 * <p>Title: </p>
 *
 * <p>Description: </p>
 *
 * <p>Copyright: Copyright (c) 2004</p>
 *
 * <p>Company: </p>
 *
 * @author not attributable
 * @version 1.0
 */
public class Plot {
  public String mapID;
  public String id;
  public String x_pos;
  public String y_pos;
  public String npc;
  public String dialog;
  public String script;

  public Plot (String mapID, String id, String x_pos, String y_pos, String npc, String dialog, String script) {
    this.mapID = mapID;
    this.id = id;
    this.x_pos = x_pos;
    this.y_pos = y_pos;
    this.npc = npc;
    this.dialog = dialog;
    this.script = script;
  }

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -