mirror of
https://github.com/zeldaret/ss
synced 2026-06-06 03:28:56 -04:00
17 lines
204 B
C++
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
|