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

📄 foxmidlet.java

📁 一款java游戏,可以学习参考,类似"是男人就下一百层".
💻 JAVA
字号:
import com.nttdocomo.ui.Display;
import com.nttdocomo.ui.IApplication;
public class FoxMIDlet
    extends IApplication {
  public FoxCanvas canvas;
  /** Constructor */
  public FoxMIDlet() {
  }
 /** Main method */
  public void start() {
    canvas = new FoxCanvas();
    Display.setCurrent(canvas);
  }

  /** Handle pausing the MIDlet */
  public void pauseApp() {
  }

  /** Handle destroying the MIDlet */
  public void destroyApp(boolean unconditional) {
  }
}

⌨️ 快捷键说明

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