mirror of
https://github.com/zeldaret/oot.git
synced 2025-05-10 11:03:46 +00:00
19 lines
430 B
C
19 lines
430 B
C
#ifndef FRAME_ADVANCE_H
|
|
#define FRAME_ADVANCE_H
|
|
|
|
#include "ultra64.h"
|
|
|
|
struct Input;
|
|
struct PlayState;
|
|
|
|
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);
|
|
|
|
int FrameAdvance_IsEnabled(struct PlayState* this);
|
|
|
|
#endif
|