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 org.beryx.textio.TextTerminal;
|
||||||
|
|
||||||
import java.awt.*;
|
import java.awt.*;
|
||||||
|
import java.util.HashMap;
|
||||||
|
|
||||||
import static ch.zhaw.catan.Command.QUIT;
|
import static ch.zhaw.catan.Command.QUIT;
|
||||||
import static ch.zhaw.catan.Command.UNKNOWN;
|
import static ch.zhaw.catan.Command.UNKNOWN;
|
||||||
|
@ -19,8 +20,8 @@ public class Parser {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
public int gameStart(){
|
public HashMap<String, Integer> gameStart(){
|
||||||
return 2;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void giveCoordinatesForStructures(Config.Structure structure) {
|
public void giveCoordinatesForStructures(Config.Structure structure) {
|
||||||
|
|
Loading…
Reference in New Issue