![](/media/cache/img/default_profile.jpg.50x50_q85.jpg)
Implement basic functions.
Game1/Game1.h
- Committer:
- Wuuu
- Date:
- 2019-05-03
- Revision:
- 0:7173d91b03e1
File content as of revision 0:7173d91b03e1:
#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); private: int _m; int _s; int _a; int _b; int _c; Copter _Copter; Wall _Wall; }; #endif