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: Menu/Menu.h
- Revision:
- 27:da17a102c8d0
- Parent:
- 22:f1811602a817
--- a/Menu/Menu.h Thu May 21 08:58:21 2020 +0000
+++ b/Menu/Menu.h Thu May 21 17:49:49 2020 +0000
@@ -16,8 +16,8 @@
//functions
/**Constructor
- *@param LCD' object
- *@param Gamepad's object
+ *@param N5110 object
+ *@param Gamepad object
*/
Menu(N5110 &lcd,Gamepad &pad);
@@ -29,19 +29,19 @@
void menu_screen();
/**Get game speed
- *@return the current game speed
+ *@return the current game speed(string)
*/
string get_game_speed();
/**Make the pause screen
- *@param the players score
- *@return chosen option
+ *@param the players score(int)
+ *@return chosen option(int)
*/
int pause_screen(int score);
/**Make the game over screen
- *@param the players score
- *@return the chosen option
+ *@param the players score(int)
+ *@return the chosen option(int )
*/
int game_over_screen(int score);