![](/media/cache/img/default_profile.jpg.50x50_q85.jpg)
Implement basic functions.
Wall/Wall.h@0:7173d91b03e1, 2019-05-03 (annotated)
- Committer:
- Wuuu
- Date:
- Fri May 03 13:03:59 2019 +0000
- Revision:
- 0:7173d91b03e1
Copter, which with header programme.
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
Wuuu | 0:7173d91b03e1 | 1 | #ifndef WALL_H |
Wuuu | 0:7173d91b03e1 | 2 | #define WALL_H |
Wuuu | 0:7173d91b03e1 | 3 | |
Wuuu | 0:7173d91b03e1 | 4 | #include "mbed.h" |
Wuuu | 0:7173d91b03e1 | 5 | #include "N5110.h" |
Wuuu | 0:7173d91b03e1 | 6 | #include "Gamepad.h" |
Wuuu | 0:7173d91b03e1 | 7 | |
Wuuu | 0:7173d91b03e1 | 8 | class Wall |
Wuuu | 0:7173d91b03e1 | 9 | { |
Wuuu | 0:7173d91b03e1 | 10 | public: |
Wuuu | 0:7173d91b03e1 | 11 | |
Wuuu | 0:7173d91b03e1 | 12 | Wall(); |
Wuuu | 0:7173d91b03e1 | 13 | ~Wall(); |
Wuuu | 0:7173d91b03e1 | 14 | void init(); |
Wuuu | 0:7173d91b03e1 | 15 | int* _ab; |
Wuuu | 0:7173d91b03e1 | 16 | int* draw(N5110 &lcd); |
Wuuu | 0:7173d91b03e1 | 17 | |
Wuuu | 0:7173d91b03e1 | 18 | private: |
Wuuu | 0:7173d91b03e1 | 19 | |
Wuuu | 0:7173d91b03e1 | 20 | int _a1; |
Wuuu | 0:7173d91b03e1 | 21 | int _a2; |
Wuuu | 0:7173d91b03e1 | 22 | int _a3; |
Wuuu | 0:7173d91b03e1 | 23 | int _a4; |
Wuuu | 0:7173d91b03e1 | 24 | int _a5; |
Wuuu | 0:7173d91b03e1 | 25 | int _a6; |
Wuuu | 0:7173d91b03e1 | 26 | int _a7; |
Wuuu | 0:7173d91b03e1 | 27 | int _a8; |
Wuuu | 0:7173d91b03e1 | 28 | int _a9; |
Wuuu | 0:7173d91b03e1 | 29 | int _a10; |
Wuuu | 0:7173d91b03e1 | 30 | int _a11; |
Wuuu | 0:7173d91b03e1 | 31 | int _a12; |
Wuuu | 0:7173d91b03e1 | 32 | int _b1; |
Wuuu | 0:7173d91b03e1 | 33 | int _b2; |
Wuuu | 0:7173d91b03e1 | 34 | int _b3; |
Wuuu | 0:7173d91b03e1 | 35 | int _b4; |
Wuuu | 0:7173d91b03e1 | 36 | int _b5; |
Wuuu | 0:7173d91b03e1 | 37 | int _b6; |
Wuuu | 0:7173d91b03e1 | 38 | int _b7; |
Wuuu | 0:7173d91b03e1 | 39 | int _b8; |
Wuuu | 0:7173d91b03e1 | 40 | int _b9; |
Wuuu | 0:7173d91b03e1 | 41 | int _b10; |
Wuuu | 0:7173d91b03e1 | 42 | int _b11; |
Wuuu | 0:7173d91b03e1 | 43 | int _b12; |
Wuuu | 0:7173d91b03e1 | 44 | }; |
Wuuu | 0:7173d91b03e1 | 45 | #endif |