mirror of
https://github.com/HarbourMasters/2ship2harkinian.git
synced 2024-11-23 05:59:40 +00:00
18 lines
364 B
C
18 lines
364 B
C
#ifndef Z64FRAMEADVANCE_H
|
|
#define Z64FRAMEADVANCE_H
|
|
|
|
#include "ultra64.h"
|
|
|
|
struct Input;
|
|
|
|
|
|
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);
|
|
|
|
#endif
|