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.daten.Texturenpakete;
import de.jaujau.gui.GUI; import de.jaujau.gui.GUI;
import de.jaujau.gui.Menue_GUI; import de.jaujau.gui.Menue_GUI;
import de.jaujau.gui.Spiel_GUI;
public class Anwendung { public class Anwendung {
@@ -11,15 +12,14 @@ public class Anwendung {
private Spiel aktuellesSpiel; private Spiel aktuellesSpiel;
private Texturenpakete texturenpakete; private Texturenpakete texturenpakete;
private Spielerverwaltung speicherung; private Spielerverwaltung speicherung;
private static Menue_GUI gui; private GUI gui;
// //
// Constructors // Constructors
// //
public Anwendung() { public Anwendung() {
speicherung = new Spielerverwaltung(); speicherung = new Spielerverwaltung();
gui = new Menue_GUI(speicherung); gui = new GUI(speicherung);
}; };
// //
@@ -82,51 +82,23 @@ public class Anwendung {
return speicherung; 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 // Other methods
// //
public static void openGui() { // GUI oeffnen! public static void openMenue_GUI(Anwendung jaujau) { //Menue_GUI oeffnen!
Anwendung jaujau = new Anwendung(); jaujau.gui.setVisible(true);
jaujau.gui.setVisible(true);
} }
/** /**
*/ */
public static void main(String[] args){ public static void main(String[] args){
openGui(); Anwendung jaujau = new Anwendung();
openMenue_GUI(jaujau);
//
// Other methods
//
/** /**
* Launch the application. * Launch the application.
*/ */
/*public static void main(String[] args)
{
System.out.println("Programm gestartet");
Anwendung jaujau = new Anwendung();
jaujau.gui.setVisible(true);
}*/
} }
} }