Ben Evans / Mbed 2 deprecated Defender_Game

Dependencies:   mbed

Revision:
7:0af4ced868f5
Child:
8:dd1037c5435b
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/GameEngine/GameEngine.h	Sat Apr 18 16:36:52 2020 +0000
@@ -0,0 +1,32 @@
+#ifndef GAMEENIGNE_H
+#define GAMEENIGNE_H
+ 
+// Include libraries
+#include "mbed.h"
+#include "N5110.h"
+#include "Gamepad.h"
+ 
+/** Spaceship class
+@brief Draws and moves spaceship
+@author Benjamin Evans, University of Leeds
+@date April 2020
+*/
+ 
+class GameEngine {
+    public:
+        /** Constructor */
+        GameEngine();
+        
+        /** Destructor */
+        ~GameEngine();
+        
+        /** Initalises Spaceship */
+        void init();
+        
+    
+        
+    private:
+   
+};
+ 
+#endif
\ No newline at end of file