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
Game_three/Game_three.h
- Committer:
- yfkwok
- Date:
- 2019-04-30
- Revision:
- 26:c60becf3f840
- Parent:
- 25:31111e6e13ad
- Child:
- 27:4bcdfb212467
File content as of revision 26:c60becf3f840:
#ifndef GAME_THREE_H #define GAME_THREE_H #include "mbed.h" #include "N5110.h" #include "Gamepad.h" #include "Score.h" #include "Book.h" #include "Message.h" /** Game Three Class * @brief This class is the game engine for the third mini-game * @version 1.0 * @author Yiu Fai Kwok * @date 22 April, 2019 */ class Game_three { public: /** Constructor */ Game_three(); /** Deconstructor */ ~Game_three(); void init(int r); void draw(N5110 &lcd, int cha); private: void background(N5110 &lcd); }; #endif