mirror of
https://github.com/zeldaret/tp
synced 2026-05-23 06:54:28 -04:00
bbc7944e54
* d_a_boomerang mostly done * d_a_grass mostly done * d_a_spinner done
21 lines
305 B
C
21 lines
305 B
C
#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;
|
|
|
|
void cCt_Counter(int resetCounter1);
|
|
|
|
inline void cCt_execCounter() {
|
|
g_Counter.mTimer++;
|
|
}
|
|
|
|
#endif /* C_COUNTER_H */
|