mm/include/z64frameadvance.h

18 lines
364 B
C
Raw Normal View History

2023-03-08 04:19:08 +00:00
#ifndef Z64FRAMEADVANCE_H
#define Z64FRAMEADVANCE_H
#include "ultra64.h"
struct Input;
2023-03-08 04:19:08 +00:00
typedef struct FrameAdvanceContext {
/* 0x0 */ s32 enabled;
/* 0x4 */ s32 timer;
} FrameAdvanceContext; // size = 0x8
void FrameAdvance_Init(FrameAdvanceContext* frameAdvCtx);
s32 FrameAdvance_Update(FrameAdvanceContext* frameAdvCtx, struct Input* input);
2023-03-08 04:19:08 +00:00
#endif