/examples/basic/mtGestures/StartMTGestures.java
http://mt4j.googlecode.com/ · Java · 15 lines · 12 code · 3 blank · 0 comment · 0 complexity · 6596b46cc497452d1a3a1293f8745daf MD5 · raw file
- package basic.mtGestures;
-
- import org.mt4j.MTApplication;
-
- public class StartMTGestures extends MTApplication {
- private static final long serialVersionUID = 1L;
-
- public static void main(String[] args) {
- initialize();
- }
- @Override
- public void startUp() {
- addScene(new MTGesturesExampleScene(this, "Multi-touch Gestures Example Scene"));
- }
- }