mirror of
https://github.com/izzy2lost/2ship2harkinian-Android.git
synced 2026-06-19 01:20:08 -07: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
|