1
0
mirror of https://github.com/inf112-v20/Fiasko.git synced 2025-07-05 15:44:44 +02:00

Makes tile lists in RoboRallyGame private

This commit is contained in:
torlunjen
2020-03-16 17:55:38 +01:00
parent df180bf372
commit 204b9c5585

@ -14,8 +14,8 @@ import java.util.concurrent.TimeUnit;
*/ */
public class RoboRallyGame implements IDrawableGame { public class RoboRallyGame implements IDrawableGame {
private Board gameBoard; private Board gameBoard;
List<BoardElementContainer<Tile>> cogwheels; private List<BoardElementContainer<Tile>> cogwheels;
List<BoardElementContainer<Tile>> conveyorBelts; private List<BoardElementContainer<Tile>> conveyorBelts;
public RoboRallyGame(boolean debug) { public RoboRallyGame(boolean debug) {
if (debug) { if (debug) {