Doxyjen of the Bird.h

Dependencies:   mbed N5110

Wall/Wall.h

Committer:
Wuuu
Date:
2019-05-05
Revision:
2:ffa13a6fec22
Parent:
0:0aea7b9ba421
Child:
3:47a29d0ddddf

File content as of revision 2:ffa13a6fec22:

#ifndef WALL_H
#define WALL_H

#include "mbed.h"
#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:

    int _a1;
    int _a2;
    int _a3;
    int _a4;
    int _a5;
    int _a6;
    int _a7;
    int _a8;
    int _a9;
    int _a10;
    int _a11;
    int _a12;
    int _b1;
    int _b2;
    int _b3;
    int _b4;
    int _b5;
    int _b6;
    int _b7;
    int _b8;
    int _b9;
    int _b10;
    int _b11;
    int _b12;
};
#endif