Files
tp/include/SSystem/SComponent/c_counter.h
T

21 lines
305 B
C
Raw Normal View History

2021-03-28 22:49:05 +02:00
#ifndef C_COUNTER_H
#define C_COUNTER_H
#include "dolphin/types.h"
struct counter_class {
u32 mCounter0;
s32 mCounter1;
u32 mTimer;
};
extern counter_class g_Counter;
2021-03-30 23:55:16 +02:00
void cCt_Counter(int resetCounter1);
inline void cCt_execCounter() {
g_Counter.mTimer++;
}
2021-03-28 22:49:05 +02:00
#endif /* C_COUNTER_H */