displayGameboard method added.
This commit is contained in:
parent
684bf9e553
commit
014b838187
|
@ -20,6 +20,10 @@ public class Parser {
|
|||
return null;
|
||||
}
|
||||
|
||||
public void displayGameboard(String gameboard) {
|
||||
textTerminal.println(gameboard);
|
||||
}
|
||||
|
||||
public HashMap<String, Integer> gameStart(){
|
||||
return null;
|
||||
//Anzahlspieler,int
|
||||
|
@ -27,10 +31,11 @@ public class Parser {
|
|||
}
|
||||
|
||||
public void giveCoordinatesForStructures(Config.Structure structure) {
|
||||
|
||||
textTerminal.println("Please insert coordinates for " + structure);
|
||||
}
|
||||
|
||||
public void thrownDices(int number){
|
||||
textTerminal.println("Dices are being thrown ");
|
||||
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue