欢迎来到虫虫下载站 | 资源下载 资源专辑 关于我们
虫虫下载站

state.java

本人做的j2me的rpg游戏程序,适合j2me游戏初学者学习
JAVA
字号:


public class State {
	
	public static final byte GM_NULL=0;
	public static final byte GM_NEW=1;
	public static final byte GM_CITYLOAD=16;
	public static final byte GM_CITY=17;
	public static final byte GM_HOUSELOAD=18;
	public static final byte GM_HOUSE=19;
	public static final byte GM_ENMYLOAD=20;
	public static final byte GM_ENMY=21;
	public static final byte GM_ENMYLOAD1=22;
	public static final byte GM_ENMY1=23;
	public static final byte GM_END=99;
	public static final byte GM_NEWLOAD=15;
	public static final byte GM_LOAD=2;
	public static final byte GM_SAVE=3;
	public static final byte GM_MENU=4;
	public static final byte GM_LOADING=5;
	public static final byte GM_PAUSE=6;
	public static final byte GM_SET=7;
	public static final byte GM_HELP=8;
	public static final byte GM_EXIT=9;
	public static final byte GM_ACTION=10;
	public static final byte GM_ACTIONMENU=11;
	public static final byte GM_CHAT=12;
	public static final byte GM_PK=13;
	public static final byte GM_ABOUT=14;
	public byte state=GM_NULL;
	
	public void setState(byte s){
		
		state = s;
	
	}
	
}

⌨️ 快捷键说明

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