SA-MP/server/scrtimers.h

19 lines
217 B
C
Raw Normal View History

2023-10-29 22:26:43 +08:00
#ifndef SAMPSRV_TIMERS_H
#define SAMPSRV_TIMERS_H
class CScriptTimers // size: W 16 L 25
{
private:
#ifdef _WIN32
char _gap[16];
#else
char _gap[25];
#endif
public:
CScriptTimers();
2024-01-06 23:33:14 +08:00
~CScriptTimers();
2023-10-29 22:26:43 +08:00
};
#endif