Package MyApp

Source Code of MyApp.Main

package MyApp;

import javax.swing.JMenuBar;

import a7_Engine.A7_Engine;


public class Main {
 
  private final A7_Engine game;
  private static int windowX = 410;
  private static int windowY = 458;
 
  public Main() {
    game = new A7_Engine(windowX,windowY, "Exponentials");
    game.getScreenFactory().showScreen(new MainScreen(game.getScreenFactory()));
  }

  public static void main(String[] args) {
    new Main()
  }
 
  public static int getWindowX() {
    return windowX;
  }
 
  public static int getWindowY() {
    return windowY;
  }
 
}
TOP

Related Classes of MyApp.Main

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.