📄 gamemidlet.java
字号:
//===============================================//
// BB Factory version 1.00 //
// Platform : Nokia K-Java handsets //
// Handset : Nokia 7650 //
// Author : Pacess HO //
// Date : 30-June-2003 //
// Copyright (C) 2003, Pacess HO. //
// Copyright (C) 2003, iNFOiSLiVE Corporation. //
//===============================================//
package city_hunter;
import javax.microedition.midlet.*;
import javax.microedition.lcdui.*;
//===================================//
// Main program of "Beach cleaner" //
//===================================//
public class GameMIDlet extends MIDlet {
private GameLogic pLogic;
public GameMIDlet() {
pLogic = new GameLogic(this);
}
protected void startApp() throws MIDletStateChangeException {
if (pLogic != null) {
Display.getDisplay(this).setCurrent(pLogic);
pLogic.start();
}
}
protected void pauseApp() {
if (pLogic != null) pLogic.stop();
}
protected void destroyApp(boolean p0) {
if (pLogic != null) pLogic.stop();
}
void QuitGame() {
destroyApp(false);
notifyDestroyed();
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -