From adf3b7635326af20e0e77d37c080ef08c64e9e91 Mon Sep 17 00:00:00 2001 From: nathansmith117 Date: Wed, 14 Feb 2024 16:05:18 -0700 Subject: Screens added --- src/mainMenu.h | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 src/mainMenu.h (limited to 'src/mainMenu.h') 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 -- cgit v1.2.3