📄 spacestructure.java
字号:
/*
* SpaceStructure.java
*
* Copyright (C) 2000 Jason M. Hanley
* Released under the GNU General Public License (GPL)
* See license.txt for additional information.
*
* Created on August 6, 2000, 6:44 PM
*/
package fate.world;
import java.io.*;
/**
* Represents a structure built in space, generally in a solar system,
* orbiting a {@link Planetoid}.
*
* @author preylude@s3m.com
* @version 0.1.0
*/
public class SpaceStructure extends OrbitingBody implements Serializable {
public Player owner;
/** Creates new SpaceStructure */
public SpaceStructure() {
super();
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -