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

📄 afterdark.java

📁 又是一款j2me 游戏
💻 JAVA
字号:
// Decompiled by DJ v3.7.7.81 Copyright 2004 Atanas Neshkov  Date: 2005-4-9 12:51:45
// Home Page : http://members.fortunecity.com/neshkov/dj.html  - Check often for new version!
// Decompiler options: packimports(3)
// Source File Name:   AfterDark.java

package girl60;

import javax.microedition.lcdui.Display;
import javax.microedition.lcdui.Displayable;
import javax.microedition.midlet.MIDlet;

// Referenced classes of package AfterDark:
//            GameManager

public class AfterDark extends MIDlet
{

    public AfterDark()
    {
        display = null;
        displayID = 1;
        display = Display.getDisplay(this);
        displayID = 1;
    }

    public void startApp()
    {
        gameManager = new GameManager();
        gameManager.Initial(this);
        SetDisplayable(gameManager, 1);
        gameManager.Run();
    }

    public void pauseApp()
    {
    }

    public void destroyApp(boolean unconditional)
    {
        gameManager.Stop();
    }

    public void TerminateProgram()
    {
        try
        {
            destroyApp(false);
            notifyDestroyed();
        }
        catch(Exception e) { }
    }

    public void SetDisplayable(Displayable newDisplay, int id)
    {
        display.setCurrent(newDisplay);
        displayID = id;
    }

    static final int LOAD_ID = 0;
    static final int GAME_ID = 1;
    private GameManager gameManager;
    private Display display;
    private int displayID;

}

⌨️ 快捷键说明

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