/*
 * xengine - reciprocating engine for X     :-)
 * 
 * Author: Kazuhiko Shutoh, 1990-1999.
 * 
 * Permission to use, copy, modify and distribute this software,
 * documentation, images, etc. is granted, provided that this comment and the
 * author's name is retained.  The author assumes no responsibility for lost
 * sleep as a consequence of use of this software.
 * 
 * Send any comments, bug reports, etc. to: shutoh@emi.yamaha.co.jp
 * 
 */
package iengine;
import com.nttdocomo.ui.*;

public class IEngine extends IApplication{
    public static Screen s;
    public void start() {
	s = new Screen();
        Display.setCurrent(s);
	s.reset();
    }
}

// eof
