game.java

来自「J2me游戏代码 J2me游戏代码 J2me游戏代码 J2me游戏代码」· Java 代码 · 共 41 行

JAVA
41
字号
// 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 + =
减小字号Ctrl + -
显示快捷键?