diff --git a/src/battle/controllers/EmptyController.java b/src/battle/controllers/EmptyController.java new file mode 100644 index 0000000000000000000000000000000000000000..4ab2c8fcab26005b78a871a520f59e7b85b666f2 --- /dev/null +++ b/src/battle/controllers/EmptyController.java @@ -0,0 +1,15 @@ +package battle.controllers; + +import asteroids.Action; +import battle.BattleController; +import battle.SimpleBattle; + +/** + * Created by davidgundry on 11/06/15. + */ +public class EmptyController implements BattleController { + @Override + public Action getAction(SimpleBattle gameStateCopy, int playerId) { + return null; + } +}