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

📄 gameapp.java

📁 初学者必备
💻 JAVA
字号:
import javax.microedition.midlet.*;import javax.microedition.lcdui.*;public class GameApp extends MIDlet{		go g;	static GameApp instance;						    public GameApp() {    	instance = this;        g = new go(this);    }    protected void destroyApp(boolean unconditional) {    }    protected void pauseApp() {    }    protected void startApp() {		go.changeCanvas(go.CVS_LOGO,true);		//go.changeCanvas(go.CVS_TRIAL,true);    }    public static void exit() {        instance.destroyApp(true);        instance.notifyDestroyed();        instance = null;    }    }

⌨️ 快捷键说明

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