?? game.java
字號:
// FrontEnd Plus GUI for JAD
// DeCompiled : game.class
package game;
import javax.microedition.lcdui.Display;
import javax.microedition.midlet.MIDlet;
// Referenced classes of package game:
// GameScreen
public class game extends MIDlet
{
public static String sLang = null;
public game()
{
String s = getAppProperty("gamelet-Language");
if(s == null)
s = "en";
sLang = s;
}
public void destroyApp(boolean flag)
{
notifyDestroyed();
}
public void pauseApp()
{
}
public void startApp()
{
javax.microedition.lcdui.Displayable displayable = Display.getDisplay(this).getCurrent();
GameScreen gamescreen = new GameScreen(this);
Display.getDisplay(this).setCurrent(gamescreen);
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -