?? 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 + -