summaryrefslogtreecommitdiff
path: root/include/c
diff options
context:
space:
mode:
Diffstat (limited to 'include/c')
-rw-r--r--include/c/c_counter.h15
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