/examples/basic/mtGestures/StartMTGestures.java

http://mt4j.googlecode.com/ · Java · 15 lines · 12 code · 3 blank · 0 comment · 0 complexity · 6596b46cc497452d1a3a1293f8745daf MD5 · raw file

  1. package basic.mtGestures;
  2. import org.mt4j.MTApplication;
  3. public class StartMTGestures extends MTApplication {
  4. private static final long serialVersionUID = 1L;
  5. public static void main(String[] args) {
  6. initialize();
  7. }
  8. @Override
  9. public void startUp() {
  10. addScene(new MTGesturesExampleScene(this, "Multi-touch Gestures Example Scene"));
  11. }
  12. }