import javax.microedition.midlet.*; import javax.microedition.lcdui.*; public class RabbitGame extends MIDlet{ Canvas drawgame = new DrawGame(); protected void startApp() throws MIDletStateChangeException{ Display.getDisplay(this).setCurrent(drawgame); } protected void pauseApp(){} protected void destroyApp (boolean kohustus) throws MIDletStateChangeException{} }