GUI Updates
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user