/tests/org/mt4j/test/testUtil/DummyMTApplication.java
http://mt4j.googlecode.com/ · Java · 16 lines · 12 code · 4 blank · 0 comment · 0 complexity · 6a5e572999b4074bff8edfbc84a53c73 MD5 · raw file
- package org.mt4j.test.testUtil;
-
- import org.mt4j.MTApplication;
-
- public class DummyMTApplication extends MTApplication {
- private static final long serialVersionUID = 1L;
-
- public static void main(String[] args) {
- initialize();
- }
-
- @Override
- public void startUp() {
- this.addScene(new DummyScene(this, "Dummy Scene"));
- }
- }