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@2:464c7e62d97d, 2019-04-03 (annotated)
- Committer:
- yfkwok
- Date:
- Wed Apr 03 03:06:00 2019 +0000
- Revision:
- 2:464c7e62d97d
- Child:
- 4:5bc9c4363d31
Date 3/4/2019 - Mini game one beta complete
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
yfkwok | 2:464c7e62d97d | 1 | #ifndef SCORE_H |
yfkwok | 2:464c7e62d97d | 2 | #define SCORE_H |
yfkwok | 2:464c7e62d97d | 3 | |
yfkwok | 2:464c7e62d97d | 4 | #include "Gamepad.h" |
yfkwok | 2:464c7e62d97d | 5 | #include "mbed.h" |
yfkwok | 2:464c7e62d97d | 6 | #include "Notes.h" |
yfkwok | 2:464c7e62d97d | 7 | |
yfkwok | 2:464c7e62d97d | 8 | class Score |
yfkwok | 2:464c7e62d97d | 9 | { |
yfkwok | 2:464c7e62d97d | 10 | public: |
yfkwok | 2:464c7e62d97d | 11 | |
yfkwok | 2:464c7e62d97d | 12 | Score(); |
yfkwok | 2:464c7e62d97d | 13 | ~Score(); |
yfkwok | 2:464c7e62d97d | 14 | void title_music(Gamepad &pad); |
yfkwok | 2:464c7e62d97d | 15 | void level_up(Gamepad &pad); |
yfkwok | 2:464c7e62d97d | 16 | void congrats(Gamepad &pad); |
yfkwok | 2:464c7e62d97d | 17 | void coin(Gamepad &pad); |
yfkwok | 2:464c7e62d97d | 18 | |
yfkwok | 2:464c7e62d97d | 19 | private: |
yfkwok | 2:464c7e62d97d | 20 | |
yfkwok | 2:464c7e62d97d | 21 | }; |
yfkwok | 2:464c7e62d97d | 22 | #endif |