1 2 3 4 5 6 7 8 9 10 11 12 13
#ifndef Z64TITLE_SETUP_H #define Z64TITLE_SETUP_H #include "z64game.h" typedef struct { /* 0x00 */ GameState state; } SetupState; // size = 0xA4 void Setup_Destroy(GameState* gameState); void Setup_Init(GameState* thisx); #endif