/examples/basic/mtGestures/StartMTGestures.java
Java | 15 lines | 12 code | 3 blank | 0 comment | 0 complexity | 6596b46cc497452d1a3a1293f8745daf MD5 | raw file
1package basic.mtGestures; 2 3import org.mt4j.MTApplication; 4 5public class StartMTGestures extends MTApplication { 6 private static final long serialVersionUID = 1L; 7 8 public static void main(String[] args) { 9 initialize(); 10 } 11 @Override 12 public void startUp() { 13 addScene(new MTGesturesExampleScene(this, "Multi-touch Gestures Example Scene")); 14 } 15}