Beginn der Implementierung

This commit is contained in:
mokoe
2020-11-30 15:20:01 +01:00
parent d1e2e67865
commit 20c7fa952a
15 changed files with 1066 additions and 1 deletions

View File

@@ -0,0 +1,87 @@
package de.jaujau.daten;
import java.util.*;
/**
* Class Spielerverwaltung
*/
public class Spielerverwaltung {
//
// Fields
//
private unsigned int level;
/**
* arraylist von Spieler
*/
private Spieler spieler;
//
// Constructors
//
public Spielerverwaltung () { };
//
// Methods
//
//
// Accessor methods
//
/**
* Set the value of level
* @param newVar the new value of level
*/
public void setLevel (unsigned int newVar) {
level = newVar;
}
/**
* Get the value of level
* @return the value of level
*/
public unsigned int getLevel () {
return level;
}
/**
* Set the value of spieler
* arraylist von Spieler
* @param newVar the new value of spieler
*/
public void setSpieler (Spieler newVar) {
spieler = newVar;
}
/**
* Get the value of spieler
* arraylist von Spieler
* @return the value of spieler
*/
public Spieler getSpieler () {
return spieler;
}
//
// Other methods
//
/**
*/
public void leseDaten()
{
}
/**
*/
public void speichernDaten()
{
}
}