Files
ss/include/c/c_counter.h
T
lepelog 066967c146 format
2026-02-01 18:14:41 +01:00

17 lines
204 B
C++

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