gameStart method now returns HashMap
This commit is contained in:
parent
e48371a121
commit
cba5a6b22c
|
@ -4,6 +4,7 @@ import org.beryx.textio.TextIoFactory;
|
|||
import org.beryx.textio.TextTerminal;
|
||||
|
||||
import java.awt.*;
|
||||
import java.util.HashMap;
|
||||
|
||||
import static ch.zhaw.catan.Command.QUIT;
|
||||
import static ch.zhaw.catan.Command.UNKNOWN;
|
||||
|
@ -19,8 +20,8 @@ public class Parser {
|
|||
return null;
|
||||
}
|
||||
|
||||
public int gameStart(){
|
||||
return 2;
|
||||
public HashMap<String, Integer> gameStart(){
|
||||
return null;
|
||||
}
|
||||
|
||||
public void giveCoordinatesForStructures(Config.Structure structure) {
|
||||
|
|
Loading…
Reference in New Issue