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.
Menu/Menu.h
- Committer:
- thestudent
- Date:
- 2020-05-07
- Revision:
- 17:cb208b15be5c
- Parent:
- 16:e2aaef863d7c
- Child:
- 18:8f7291885e19
File content as of revision 17:cb208b15be5c:
#ifndef MENU_H #define MENU_H #include "N5110.h" #include "Gamepad.h" #include "Objects.h" class Menu { public: Menu(N5110 &lcd,Gamepad &pad); void first_screen(); private: N5110 _lcd; Gamepad _pad; }; #endif