Implement basic functions

Dependencies:   mbed N5110

Revision:
0:64bd9f996099
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Bird/Bird.h	Fri May 03 13:05:24 2019 +0000
@@ -0,0 +1,23 @@
+#ifndef BIRD_H
+#define BIRD_H
+
+#include "mbed.h"
+#include "N5110.h"
+#include "Gamepad.h"
+#include "Bitmap.h"
+
+class Bird
+{
+public:
+    
+    Bird();
+    ~Bird();
+    void init();
+    int draw(N5110 &lcd,Gamepad &pad);
+
+private:
+
+    int _h;
+};
+
+#endif
\ No newline at end of file