This commit is contained in:
Fabian Keller
2020-12-02 15:59:26 +01:00
3 changed files with 6 additions and 40 deletions

View File

@@ -12,7 +12,7 @@ public class Spielerverwaltung {
// Fields // Fields
// //
private unsigned int level; private int level;
/** /**
* arraylist von Spieler * arraylist von Spieler
*/ */
@@ -36,7 +36,7 @@ public class Spielerverwaltung {
* Set the value of level * Set the value of level
* @param newVar the new value of level * @param newVar the new value of level
*/ */
public void setLevel (unsigned int newVar) { public void setLevel (int newVar) {
level = newVar; level = newVar;
} }
@@ -44,7 +44,7 @@ public class Spielerverwaltung {
* Get the value of level * Get the value of level
* @return the value of level * @return the value of level
*/ */
public unsigned int getLevel () { public int getLevel () {
return level; return level;
} }

View File

@@ -25,7 +25,7 @@ import java.net.URL;
import java.awt.Component; import java.awt.Component;
import java.awt.Font; import java.awt.Font;
public class JauJauGUI { public class Menue_GUI {
private JFrame frame; private JFrame frame;
@@ -36,7 +36,7 @@ public class JauJauGUI {
EventQueue.invokeLater(new Runnable() { EventQueue.invokeLater(new Runnable() {
public void run() { public void run() {
try { try {
JauJauGUI window = new JauJauGUI(); Menue_GUI window = new Menue_GUI();
window.frame.setVisible(true); window.frame.setVisible(true);
} catch (Exception e) { } catch (Exception e) {
e.printStackTrace(); e.printStackTrace();
@@ -48,7 +48,7 @@ public class JauJauGUI {
/** /**
* Create the application. * Create the application.
*/ */
public JauJauGUI() { public Menue_GUI() {
initialize(); initialize();
} }

View File

@@ -1,34 +0,0 @@
package de.jaujau.gui;
import java.util.*;
/**
* Class Men<65>_GUI
*/
public class Men<EFBFBD>_GUI {
//
// Fields
//
//
// Constructors
//
public Men<EFBFBD>_GUI () { };
//
// Methods
//
//
// Accessor methods
//
//
// Other methods
//
}