Implement basic functions.

Dependencies:   mbed N5110

Revision:
0:7173d91b03e1
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Game1/Game1.h	Fri May 03 13:03:59 2019 +0000
@@ -0,0 +1,29 @@
+#ifndef GAME1_H
+#define GAME1_H
+
+#include "mbed.h"
+#include "N5110.h"
+#include "Gamepad.h"
+#include "Wall.h"
+#include "Copter.h"
+
+class Game1
+{
+public:
+    Game1();
+    ~Game1();
+    void init();
+    int draw(N5110 &lcd, Gamepad &pad);
+
+private:
+    
+    int _m;
+    int _s;
+    int _a;
+    int _b;
+    int _c;
+    Copter _Copter;
+    Wall _Wall;
+};
+
+#endif