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-08
- Revision:
- 5:bc0691d02fd5
- Parent:
- 4:5bc9c4363d31
- Child:
- 6:9104692d6c8c
- Child:
- 10:adff3c804985
File content as of revision 5:bc0691d02fd5:
#ifndef SCORE_H #define SCORE_H #include "Gamepad.h" #include "mbed.h" #include "Notes.h" #include "N5110.h" #include "Squirtle.h" class Score { public: Score(); ~Score(); void title_music(Gamepad &pad); void level_up(Gamepad &pad); void congrats(Gamepad &pad); void coin(Gamepad &pad); void evolution_music(Gamepad &pad, N5110 &lcd, int cha, int year); void congrats(Gamepad &pad, N5110 &lcd, int cha, int year); void draw(N5110 &lcd, int cha, int year); void draw_cong(N5110 &lcd, int cha, int year); void win(Gamepad &pad); void exam_intro(Gamepad &pad); void gym(Gamepad &pad, bool state); private: Squirtle _s1; }; #endif