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
Fork of el17ajf by
Menus/MenuManager/MenuManager.h
- Committer:
- el17ajf
- Date:
- 2019-04-03
- Revision:
- 21:62d2b5b73160
- Child:
- 22:0a474f074553
File content as of revision 21:62d2b5b73160:
#ifndef MENU_MANAGER_H #define MENU_MANAGER_H #include "Menu.h" //#include "ControlsMenu.h" //#include "DifficultyMenu.h" //#include "GameOverMenu.h" //#include "MainMenu.h" //#include "PausedMenu.h" //#include "ScoresMenu.h" namespace Menus { namespace MenuManager { void updateAndDraw(); void draw(); int count(); void add(Menu * menu); bool canClose(); void close(); void closeAll(); }; }; #endif