1
0
Fork 0
mirror of https://github.com/zeldaret/oot.git synced 2025-05-09 18:43:45 +00:00
oot/include/setup_state.h
2025-04-28 10:15:32 -04:00

13 lines
235 B
C

#ifndef SETUP_STATE_H
#define SETUP_STATE_H
#include "game.h"
typedef struct SetupState {
/* 0x00 */ GameState state;
} SetupState; // size = 0xA4
void Setup_Init(GameState* thisx);
void Setup_Destroy(GameState* thisx);
#endif