import javax.microedition.lcdui.Display;
import javax.microedition.midlet.MIDlet;

public class RasterBars extends MIDlet {
	static theGame game;
	static RasterBars getDisplay;

    public RasterBars() {
        System.gc();
        getDisplay = this;
        game = new theGame();
        theGame.I = this;
    }

    public final void startApp() {
        new Thread(game).start();
        Display.getDisplay(this).setCurrent(game);
    }

    public final void pauseApp() {
        notifyPaused();
    }

    public final void destroyApp(boolean flag) {
        Display.getDisplay(this).setCurrent(null);
        notifyDestroyed();
    }

} // EoC