Arturs Kozlovskis / Mbed 2 deprecated ELEC2645_Project_el18ak

Dependencies:   mbed

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);