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.
Dependencies: mbed FXOS8700CQ mbed-rtos
Score/Score.h
- Committer:
- yfkwok
- Date:
- 2019-04-03
- Revision:
- 2:464c7e62d97d
- Child:
- 4:5bc9c4363d31
File content as of revision 2:464c7e62d97d:
#ifndef SCORE_H #define SCORE_H #include "Gamepad.h" #include "mbed.h" #include "Notes.h" class Score { public: Score(); ~Score(); void title_music(Gamepad &pad); void level_up(Gamepad &pad); void congrats(Gamepad &pad); void coin(Gamepad &pad); private: }; #endif