mirror of
https://github.com/zeldaret/ss
synced 2026-05-23 23:05:20 -04:00
28 lines
399 B
C++
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
|