dTimer_createStockTimer

This commit is contained in:
Pheenoh
2022-12-22 10:36:47 -07:00
parent f6318d671c
commit a2c1e7afaf
4 changed files with 44 additions and 20 deletions
+8
View File
@@ -703,10 +703,18 @@ inline int dComIfG_getTimerMode() {
return g_dComIfG_gameInfo.play.getTimerMode();
}
inline void dComIfG_setTimerMode(int mode) {
return g_dComIfG_gameInfo.play.setTimerMode(mode);
}
inline dTimer_c* dComIfG_getTimerPtr() {
return g_dComIfG_gameInfo.play.getTimerPtr();
}
inline u8 dComIfG_getTimerType() {
return g_dComIfG_gameInfo.play.getTimerType();
}
inline int dComIfG_setObjectRes(const char* name, u8 param_1, JKRHeap* heap) {
return g_dComIfG_gameInfo.mResControl.setObjectRes(name, param_1, heap);
}