Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Diff: main.h
- Revision:
- 8:421f94b816c4
- Parent:
- 7:ffbc921c20f7
- Child:
- 9:e6832bf222b7
--- a/main.h Tue May 07 15:33:17 2019 +0000 +++ b/main.h Tue May 07 16:02:12 2019 +0000 @@ -147,6 +147,25 @@ {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,}, }; // Barrel ----- + +class Barrel +{ + + public: + + Barrel(); + + ~Barrel(); + + void barrel_drop(Gamepad &pad, N5110 &lcd); +}; + +int game_barrel[4][8] = { + {0,1,1,1,1,1,1,0,}, + {1,1,1,1,1,1,1,1,}, + {1,1,1,1,1,1,1,1,}, + {0,1,1,1,1,1,1,0,}, +}; // Banana ----- // Controls ------------------------- void controls_run();