mirror of
https://github.com/zeldaret/ss
synced 2026-07-06 21:22:43 -04:00
16 lines
203 B
C++
16 lines
203 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
|