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