Final Commit

Dependencies:   mbed

Revision:
2:ea90cec2489a
Parent:
1:c3fdbc4b1293
Child:
3:50f01159c61d
--- a/SnakeEngine/SnakeEngine.h	Wed Feb 28 14:58:21 2018 +0000
+++ b/SnakeEngine/SnakeEngine.h	Wed Feb 28 15:20:14 2018 +0000
@@ -1,5 +1,26 @@
-/** My Sample Class
+#ifndef SNAKEENGINE_H
+#define SNAKEENGINE_H
+
+#include "mbed.h"
+#include "N5110.h"
+#include "GamePad.h"
+#include "FXOS8700CQ.h"
+
+/** SnakeEngine Class
 * @brief Class that initialises and defines the game charectoristics ready for the main file
 * @author Joshua R. Marshall
 * @date Feb, 2018
-*
\ No newline at end of file
+*/
+class SnakeEngine
+{
+
+public:
+    SnakeEngine(); // constructor
+    ~SnakeEngine(); // destructor
+
+    
+private:
+
+
+};
+#endif
\ No newline at end of file