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: Menus/Menu.h
- Revision:
- 0:07c4fef6c0af
- Child:
- 1:538386e72e40
diff -r 000000000000 -r 07c4fef6c0af Menus/Menu.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Menus/Menu.h Wed May 08 21:44:02 2019 +0000 @@ -0,0 +1,27 @@ +#ifndef MENU_H +#define MENU_H + +#include "mbed.h" +#include "N5110.h" +#include "Gamepad.h" + +class Menu +{ +public: + + Menu(); + ~Menu(); + int input(int select,Gamepad &pad); + void menus(N5110 &lcd,Gamepad &pad); + int difficulty(N5110 &lcd,Gamepad &pad); + + +private: + int sel; + int go_on; + int _fps; + + +}; + +#endif \ No newline at end of file