Doxyjen of the Bird.h

Dependencies:   mbed N5110

Revision:
2:ffa13a6fec22
Parent:
0:0aea7b9ba421
Child:
3:47a29d0ddddf
--- a/Wall/Wall.h	Sun May 05 17:05:08 2019 +0000
+++ b/Wall/Wall.h	Sun May 05 17:15:03 2019 +0000
@@ -5,14 +5,33 @@
 #include "N5110.h"
 #include "Gamepad.h"
 
+/**  Wall class
+
+*@brief Library to draw the thoroughfare of the copter
+*/
+
 class Wall
 {
 public:
     
+    /**Constructor*/
     Wall();
+    /**Destructor*/
     ~Wall();
+    /**
+    *@brief Initialise all parameters of the wall of copter
+    */
     void init();
+    /**
+    *@brief Input a mainfold
+    */
     int* _ab;
+    /**
+    *@brief Draw the thoroughfare of the copter
+    *@param lcd
+    *@returns The boundary position of thoroughfare
+    *@details Use the method to use function within N5110.h file
+    */
     int* draw(N5110 &lcd);
 
 private: