Doxygen comments added

Dependencies:   mbed Gamepad N5110

Revision:
3:5409b50b01b0
Child:
6:bc580b480ac8
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Bird/Bird.h	Tue Apr 23 17:09:28 2019 +0000
@@ -0,0 +1,24 @@
+#ifndef BIRD_H
+#define BIRD_H
+
+#include "mbed.h"
+#include "N5110.h"
+#include "Gamepad.h"
+
+class Bird {
+    
+    public:
+    
+    //Bird();
+    //~Bird();
+    void init(int xvalue, int yvalue);
+    //void draw(N5110 &lcd);
+    
+    private:
+    
+    int _xvalue;
+    int _yvalue;
+    //const int movingbird;
+    
+    };
+#endif
\ No newline at end of file