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
Diff: TanksEngine/TanksEngine.h
- Revision:
- 22:9e9685856ce1
- Parent:
- 21:44e87d88afe2
--- a/TanksEngine/TanksEngine.h Thu May 09 13:10:16 2019 +0000 +++ b/TanksEngine/TanksEngine.h Thu May 09 13:45:05 2019 +0000 @@ -75,17 +75,17 @@ ~TanksEngine(); /** - * @brief Resets member variables to their default values from previous games and sets the values specified in setting. - * @param &menus * @details The menus object from Menus class. + * @brief Resets member variables from previous games to their default values and sets the values specified in setting. + * @param menus * @details The menus object from Menus class. */ void initgame(Menus &menus); /** * @brief Runs the main gameloop updating the game as the player inputs controls and updating display based on game events. - * @param &graphics * @details The graphics object from Graphics class. - * @param &lcd * @details The lcd object from N5110 class. - * @param &pad * @details The pad object from Gamepad class. - * @param &menus * @details The menus object from Menus class. - * @param &scores * @details The scores object from Scores class. + * @param graphics * @details The graphics object from Graphics class. + * @param lcd * @details The lcd object from N5110 class. + * @param pad * @details The pad object from Gamepad class. + * @param menus * @details The menus object from Menus class. + * @param scores * @details The scores object from Scores class. */ void game_loop(Graphics &graphics, N5110 &lcd, Gamepad &pad, Menus &menus, Scores &scores);