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