diff --git a/src/battle/controllers/RotateAndShootController.java b/src/battle/controllers/RotateAndShootController.java
new file mode 100644
index 0000000000000000000000000000000000000000..a9dc1525f1a2ab585ff15ff756815e8537c9b5f7
--- /dev/null
+++ b/src/battle/controllers/RotateAndShootController.java
@@ -0,0 +1,16 @@
+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);
+    }
+}