GUI Updates

This commit is contained in:
ekresse
2020-11-30 16:46:59 +01:00
parent 44802531f9
commit daf48307f4
3 changed files with 126 additions and 37 deletions

View File

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