forked from 2211945/WIZARD_PR2_DOP
Spiel methodenköpfe hinzugefügt
parent
2541430c0d
commit
a0fdcd3db7
|
@ -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) {
|
||||
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue