1
0
Fork 0
mirror of https://github.com/zeldaret/oot.git synced 2025-02-27 11:34:29 +00:00
oot/include/prenmi_state.h

17 lines
318 B
C
Raw Normal View History

#ifndef PRENMI_STATE_H
#define PRENMI_STATE_H
#include "ultra64.h"
#include "z64game.h"
typedef struct PreNMIState {
/* 0x00 */ GameState state;
/* 0xA4 */ u32 timer;
/* 0xA8 */ s32 unk_A8;
} PreNMIState; // size = 0xAC
void PreNMI_Init(GameState* thisx);
void PreNMI_Destroy(GameState* thisx);
#endif