/examples/advanced/physics/StartAirHockey.java
http://mt4j.googlecode.com/ · Java · 19 lines · 13 code · 6 blank · 0 comment · 0 complexity · e171e999d4e978abcafd50836e722abf MD5 · raw file
- package advanced.physics;
-
- import org.mt4j.MTApplication;
-
- import advanced.physics.scenes.AirHockeyScene;
-
- public class StartAirHockey extends MTApplication {
- private static final long serialVersionUID = 1L;
-
- public static void main(String[] args) {
- initialize();
- }
-
- @Override
- public void startUp() {
- addScene(new AirHockeyScene(this, "Air Hockey Scene"));
- }
-
- }