mirror of
https://github.com/dashr9230/SA-MP.git
synced 2024-12-22 22:47:29 +08:00
19 lines
217 B
C++
19 lines
217 B
C++
|
|
#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();
|
|
~CScriptTimers();
|
|
};
|
|
|
|
#endif
|