Implement basic functions

Dependencies:   mbed N5110

Begin/Begin.h

Committer:
Wuuu
Date:
2019-05-03
Revision:
0:64bd9f996099

File content as of revision 0:64bd9f996099:

#ifndef BEGIN_H
#define BEGIN_H

#include "mbed.h"
#include "N5110.h"
#include "Gamepad.h"
#include "Wall.h"
#include "Bird.h"

class Begin
{
public:
    Begin();
    ~Begin();
    void init();
    int draw(N5110 &lcd, Gamepad &pad);

private:
    
    int _m;
    int _s;
    int _a1;
    int _b1;
    int _a2;
    int _b2;
    int _a3;
    int _b3;
    int _h;
    Bird _Bird;
    Wall _Wall;
};

#endif