mirror of
https://github.com/zeldaret/mm.git
synced 2024-11-27 06:40:36 +00:00
17 lines
369 B
C
17 lines
369 B
C
#ifndef Z64FRAMEADVANCE_H
|
|
#define Z64FRAMEADVANCE_H
|
|
|
|
#include "ultra64.h"
|
|
#include "io/controller.h"
|
|
|
|
typedef struct FrameAdvanceContext {
|
|
/* 0x0 */ s32 enabled;
|
|
/* 0x4 */ s32 timer;
|
|
} FrameAdvanceContext; // size = 0x8
|
|
|
|
|
|
void FrameAdvance_Init(FrameAdvanceContext* frameAdvCtx);
|
|
s32 FrameAdvance_Update(FrameAdvanceContext* frameAdvCtx, Input* input);
|
|
|
|
#endif
|