d_t_mass_obj 99%

This commit is contained in:
lepelog
2025-12-13 01:23:37 +01:00
parent 62fc066b60
commit b017949c4b
15 changed files with 2003 additions and 63 deletions
+15
View File
@@ -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