added System.exit(0) in main

This commit is contained in:
Jannik 2017-10-29 23:57:39 +01:00
parent eb127282ad
commit e4a316f62c
17 changed files with 8 additions and 4 deletions

5
bin/.gitignore vendored
View File

@ -1,4 +1,3 @@
/cloudControllerInstances/
/libraries/
/resources/
/application/
/cloudControllerInstances/
/datatypes/

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -287,4 +287,9 @@ public class Main extends Application {
LOGGER = LogManager.getLogger(Main.class.getName());
launch(args);
}
@Override
public void stop() {
System.exit(0);
}
}

View File

@ -257,7 +257,7 @@ public class MainWindowController {
private String selectedGameTitle;
private String id;
private String version = "0.2.0";
private String buildNumber = "045";
private String buildNumber = "047";
private String versionName = "Puzzle Plank Galaxy";
private int xPos = -200;
private int yPos = 17;