Anwendung auf neue GUI Aufteilung angepasst.

This commit is contained in:
ekresse
2020-12-15 11:38:55 +01:00
parent b8bf4b2759
commit f6a8a2737e

View File

@@ -4,6 +4,7 @@ import de.jaujau.daten.Spielerverwaltung;
import de.jaujau.daten.Texturenpakete;
import de.jaujau.gui.GUI;
import de.jaujau.gui.Menue_GUI;
import de.jaujau.gui.Spiel_GUI;
public class Anwendung {
@@ -11,15 +12,14 @@ public class Anwendung {
private Spiel aktuellesSpiel;
private Texturenpakete texturenpakete;
private Spielerverwaltung speicherung;
private static Menue_GUI gui;
private GUI gui;
//
// Constructors
//
public Anwendung() {
speicherung = new Spielerverwaltung();
gui = new Menue_GUI(speicherung);
gui = new GUI(speicherung);
};
//
@@ -81,52 +81,24 @@ public class Anwendung {
public Spielerverwaltung getSpeicherung() {
return speicherung;
}
/**
* Set the value of gui
*
* @param newVar the new value of gui
*/
public static void setGui(Menue_GUI newVar) {
gui = newVar;
}
/**
* Get the value of gui
* @return the value of gui
*/
public static GUI getGui () {
return gui;
}
//
// Other methods
//
public static void openGui() { // GUI oeffnen!
Anwendung jaujau = new Anwendung();
jaujau.gui.setVisible(true);
public static void openMenue_GUI(Anwendung jaujau) { //Menue_GUI oeffnen!
jaujau.gui.setVisible(true);
}
/**
*/
public static void main(String[] args){
openGui();
//
// Other methods
//
Anwendung jaujau = new Anwendung();
openMenue_GUI(jaujau);
/**
* Launch the application.
*/
/*public static void main(String[] args)
{
System.out.println("Programm gestartet");
Anwendung jaujau = new Anwendung();
jaujau.gui.setVisible(true);
}*/
}
}