Files
ss/include/c/c_counter.h
T
2026-03-22 22:07:56 +00:00

28 lines
399 B
C++

#ifndef C_COUNTER_H
#define C_COUNTER_H
#include "common.h"
class cCounter_c {
public:
static s32 GetGameFrame() {
return m_gameFrame;
}
static void IncrementGameFrame() {
m_gameFrame++;
}
static void IncrementUnkCounter() {
m_unkCounter++;
}
static void clear();
private:
static s32 m_gameFrame;
static s32 m_unkCounter;
};
#endif