code_B6CE0.c => time.c

This commit is contained in:
Banjo Kazooie
2024-11-03 13:03:26 -06:00
parent dcdc2ff9d3
commit 23b8510eb4
21 changed files with 110 additions and 97 deletions

15
include/time.h Normal file
View File

@@ -0,0 +1,15 @@
#ifndef __GL_TIME_H__
#define __GL_TIME_H__
#include <ultra64.h>
void time_reset(void);
void time_setDeltaReal_sec(f32 d_seconds);
void time_setDeltaReal_frames(s32 d_frames);
s32 time_getDeltaReal_frames(void);
f32 time_getDelta(void);
f32 time_func_8033DDB8(void);
f32 time_getDelta_frames(void);
void time_setMultiplier(f32 multiplier);
#endif