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.
lib/Controls/Controls.h
- Committer:
- Kern_EL17KJTF
- Date:
- 2019-05-08
- Revision:
- 22:d265f506446b
- Parent:
- 19:8400ecdb69e9
- Child:
- 23:ecb74e52163d
File content as of revision 22:d265f506446b:
#ifndef CONTROLS_H
#define CONTROLS_H
#include "mbed.h"
#include "N5110.h"
#include "Gamepad.h"
/** Controls Class
*@brief This class is for the controls menu screen.
*@author Kern Fowler
*@version 1.0
*@date May 2019
*/
class Controls {
public:
/** Controls Constructor
@brief Builds my default Controls contructor.
@details This does not have any setup.
*/
Controls();
/** Controls Destructor
@brief Builds my default Controls Destructor.
@details This does not have any setup.
*/
~Controls();
// Mutators
/**
*@brief Prints the Controls menu.
*@param pad The Gamepad class is used.
*@param lcd The N5110 class is used.
*@details Prints various text to screen relating to the game controls.
*/
void controls_run(Gamepad &pad, N5110 &lcd);
};
#endif