1
0
Fork 0

Spiel methodenköpfe hinzugefügt

Philipp Kotte 2023-10-10 15:30:47 +02:00
parent 2541430c0d
commit a0fdcd3db7
1 changed files with 40 additions and 0 deletions

View File

@ -53,4 +53,44 @@ public class Spiel {
// Gameloop?
}
public String[] getSpielerAmZug() {
return new String[0];
}
public boolean istSpielGestartet() {
return this.istGestartet;
}
public boolean istSpielBeendet() {
return this.istBeendet;
}
public String[][] getBlock() {
return new String[0][0];
}
public String getGewinner() {
return "";
}
public int getRunde() {
return this.runde;
}
public void mischer() {
}
public void austeilen() {
}
public void ausspielen(int idKarte) {
}
public void vorhersagen(int stiche) {
}
}