summaryrefslogtreecommitdiff
path: root/include/c/c_counter.h
blob: 8efe5f26b824c7634d6b65084089f22ac0724a5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#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