mirror of
https://github.com/zeldaret/oot.git
synced 2025-07-15 12:24:39 +00:00
Create headers for Game States (#2482)
* make headers for gamestates * fixes * fixes 2 * bss
This commit is contained in:
parent
4cfb5f05a0
commit
2e4d7a1101
35 changed files with 300 additions and 199 deletions
13
include/setup_state.h
Normal file
13
include/setup_state.h
Normal file
|
@ -0,0 +1,13 @@
|
|||
#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
|
Loading…
Add table
Add a link
Reference in a new issue