fxml files changes + first style

This commit is contained in:
giavaphi
2022-12-05 01:12:18 +01:00
parent 21643e5d63
commit 0257dd9bf0
13 changed files with 497 additions and 405 deletions
@@ -9,6 +9,8 @@ public class Settings {
private static Settings instance;
private final BooleanProperty showTutorial = new SimpleBooleanProperty(false);
private String location = "";
static {
instance = new Settings();
}
@@ -38,4 +40,12 @@ public class Settings {
public boolean getShowTutorial() {
return this.showTutorial.get();
}
public void setLocation(String location) {
this.location = location;
}
public String getLocation() {
return this.location;
}
}