mirror of
https://github.com/zeldaret/oot
synced 2026-05-23 06:54:24 -04:00
2e4d7a1101
* make headers for gamestates * fixes * fixes 2 * bss
14 lines
238 B
C
14 lines
238 B
C
#ifndef SETUP_STATE_H
|
|
#define SETUP_STATE_H
|
|
|
|
#include "z64game.h"
|
|
|
|
typedef struct SetupState {
|
|
/* 0x00 */ GameState state;
|
|
} SetupState; // size = 0xA4
|
|
|
|
void Setup_Init(GameState* thisx);
|
|
void Setup_Destroy(GameState* thisx);
|
|
|
|
#endif
|