aboutsummaryrefslogtreecommitdiffstats
path: root/src/mainMenu.h
diff options
context:
space:
mode:
authornathansmith117 <thenathansmithsmith@gmail.com>2024-02-14 23:05:18 +0000
committernathansmith117 <thenathansmithsmith@gmail.com>2024-02-14 23:05:18 +0000
commitadf3b7635326af20e0e77d37c080ef08c64e9e91 (patch)
tree70e0b0144bccec31af7dc3f667dc73aa2c31c20c /src/mainMenu.h
parent63e4506ce8c21392e99c428afe2b285f12f78c00 (diff)
downloadPenguinYippies-adf3b7635326af20e0e77d37c080ef08c64e9e91.tar.gz
PenguinYippies-adf3b7635326af20e0e77d37c080ef08c64e9e91.tar.bz2
PenguinYippies-adf3b7635326af20e0e77d37c080ef08c64e9e91.zip
Screens added
Diffstat (limited to 'src/mainMenu.h')
-rw-r--r--src/mainMenu.h13
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