Package advanced.physics

Source Code of advanced.physics.StartAirHockey

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"));
  }

}
TOP

Related Classes of advanced.physics.StartAirHockey

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.