Files
dusklight/include/SSystem/SComponent/c_counter.h
T
TakaRikka bd068c0168 d_meter2 wip / d_s_play / d_file_sel_info (#179)
* d_meter2 wip

* d_s_play

* d_file_sel_info

* format

* tag_lv5soup / tag_setBall / fix dKyeff

* d_cc_uty
2022-02-06 09:23:54 -05:00

21 lines
305 B
C

#ifndef C_COUNTER_H
#define C_COUNTER_H
#include "dolphin/types.h"
struct counter_class {
s32 mCounter0;
s32 mCounter1;
s32 mTimer;
};
extern counter_class g_Counter;
void cCt_Counter(int resetCounter1);
inline void cCt_execCounter() {
g_Counter.mTimer++;
}
#endif /* C_COUNTER_H */