diff options
| author | lepelog <25211966+lepelog@users.noreply.github.com> | 2025-12-13 01:23:37 +0100 |
|---|---|---|
| committer | lepelog <25211966+lepelog@users.noreply.github.com> | 2026-02-01 18:14:38 +0100 |
| commit | b017949c4b37acbfea90fdd5641dbdceaee688a7 (patch) | |
| tree | 1648b752fd8a55070ac3555ea9615e09dd95a7b1 /include/c | |
| parent | 62fc066b605680af84cc921aba070b62e7df8ff7 (diff) | |
d_t_mass_obj 99%
Diffstat (limited to 'include/c')
| -rw-r--r-- | include/c/c_counter.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/include/c/c_counter.h b/include/c/c_counter.h new file mode 100644 index 00000000..5f3590e4 --- /dev/null +++ b/include/c/c_counter.h @@ -0,0 +1,15 @@ +#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 |
