diff options
Diffstat (limited to 'src/mainMenu.h')
-rw-r--r-- | src/mainMenu.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/mainMenu.h b/src/mainMenu.h new file mode 100644 index 0000000..c8b9fb3 --- /dev/null +++ b/src/mainMenu.h @@ -0,0 +1,13 @@ +#include "gameCommon.h" + +#ifndef MAIN_MENU_H +#define MAIN_MENU_H + +typedef struct MainMenu { +} MainMenu; + +void initMainMenu(MainMenu* mainMenu, Game* game); +void updateMainMenu(MainMenu* mainMenu, Game* game); +void closeMainMenu(MainMenu* mainMenu); + +#endif |