?? hextypestruct.java
字號:
package netwar.utils;
/** A utility class for the map maker that contains many of the attibutes of a single HexType. Also serializaable.
* @author Kyle Kakligian
*/
public class HexTypeStruct implements java.io.Serializable {
/** path of the hexType image
*/
public String filename;
public boolean passable;
public java.awt.Color color;
/** Common constructor
* @param Filename
* @param Passable
* @param Color
*/
public HexTypeStruct(String Filename, boolean Passable, java.awt.Color Color) {
filename = Filename;
passable = Passable;
color = Color;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -