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

📄 switchmainviewmessage.java

📁 Massively Multiplayer Space Trading and Combat game. This is an online strategy game, not a 3D space
💻 JAVA
字号:
/*
 * SwitchMainViewMessage.java
 *
 * Copyright (C) 2000 Jason M. Hanley
 * Released under the GNU General Public License (GPL)
 * See license.txt for additional information.
 *
 * Created on August 18, 2000, 3:09 AM
 */
 
package fate.messages;

import java.io.*;

import fate.world.*;

/** 
 * Indicates to the server to send update messages pertaining
 * to a certain "view" on the client.
 *
 * @author  preylude@s3m.com
 * @version 0.1.0
 */
public class SwitchMainViewMessage extends GameMessage
    implements Serializable {
      
  /** Type of main view we want to switch to.
      (types defined in {@link PlayerState} */
  public int viewType;

  /** ID number of the ship/base/etc to watch. */
  public int idObject;
  
  /** ID number of the planetoid. */
  public int idPlanetoid;
  
  /** ID number of the solar system. */
  public int idSolarSystem;
  
  /** ID number of the galaxy. */
  public int idGalaxy;
  
  /** Creates new SwitchMainViewMessage */
  public SwitchMainViewMessage() {
  }
  
}

⌨️ 快捷键说明

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