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
|
2023-11-16 22:31:06 +08:00
|
|
|
public:
|
|
|
|
CScriptTimers();
|
2023-10-29 22:26:43 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|