summaryrefslogtreecommitdiff
path: root/include/title_setup_state.h
diff options
context:
space:
mode:
authorfig02 <fig02srl@gmail.com>2025-02-20 07:50:13 -0500
committerGitHub <noreply@github.com>2025-02-20 07:50:13 -0500
commit2e4d7a11012bf90ac21086ec1a9cd23f54413e86 (patch)
tree78676e8f4f9409ad65a92d48f3023afd51c4045d /include/title_setup_state.h
parent4cfb5f05a08d0747f993ef914d4d78872ca02b2f (diff)
Create headers for Game States (#2482)
* make headers for gamestates * fixes * fixes 2 * bss
Diffstat (limited to 'include/title_setup_state.h')
-rw-r--r--include/title_setup_state.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/include/title_setup_state.h b/include/title_setup_state.h
new file mode 100644
index 000000000..30219872a
--- /dev/null
+++ b/include/title_setup_state.h
@@ -0,0 +1,15 @@
+#ifndef TITLE_SETUP_STATE_H
+#define TITLE_SETUP_STATE_H
+
+#include "z64game.h"
+#include "z64view.h"
+
+typedef struct TitleSetupState {
+ /* 0x0000 */ GameState state;
+ /* 0x00A8 */ View view;
+} TitleSetupState; // size = 0x1D0
+
+void TitleSetup_Init(GameState* thisx);
+void TitleSetup_Destroy(GameState* thisx);
+
+#endif