diff --git a/src/de/jaujau/spiellogik/Anwendung.java b/src/de/jaujau/spiellogik/Anwendung.java index a2fe9c7..87ee0d3 100644 --- a/src/de/jaujau/spiellogik/Anwendung.java +++ b/src/de/jaujau/spiellogik/Anwendung.java @@ -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); - - - }*/ - } }