Aiming Wu
/
2645_Assignment
Doxyjen of the Bird.h
Game1/Game1.h
- Committer:
- Wuuu
- Date:
- 2019-05-05
- Revision:
- 0:0aea7b9ba421
- Child:
- 4:bf257e628311
File content as of revision 0:0aea7b9ba421:
#ifndef GAME1_H #define GAME1_H #include "mbed.h" #include "N5110.h" #include "Gamepad.h" #include "Wall.h" #include "Copter.h" class Game1 { public: Game1(); ~Game1(); void init(); int draw(N5110 &lcd, Gamepad &pad); int get_score(); private: int _m; int _s; int _a; int _b; int _c; Copter _Copter; Wall _Wall; }; #endif