Legger til alle tegnbare roboter til debug modus

This commit is contained in:
Kristian Knarvik 2020-03-02 12:18:01 +01:00
parent be13228895
commit 49af2069c6

View File

@ -61,6 +61,9 @@ public class Game implements IDrawableGame {
*/
private void initializeDebugMode() {
List<Robot> robots = new ArrayList<>();
robots.add(new Robot(RobotID.ROBOT_1, new Position(0, 16)));
robots.add(new Robot(RobotID.ROBOT_2, new Position(1, 16)));
robots.add(new Robot(RobotID.ROBOT_3, new Position(2, 16)));
try {
gameBoard = BoardLoaderUtil.loadBoard("boards/all_tiles_test_board.txt", robots);
} catch (IOException e) {