Files
csgo2_tiny_server_plugin_sy…/csgo2/timer.h
Huoji's 06acf8b24d 11
2023-10-04 06:01:28 +08:00

19 lines
388 B
C++

#pragma once
#include "head.h"
class _GameTimer {
public:
float m_flTime;
float m_flLastExecute = -1;
bool m_bRepeat;
bool m_bPreserveMapChange;
lua_State* m_luaVm;
int m_iParamIndex;
int m_iLuaCallBackFn;
};
namespace GameTimer {
auto AddTimer(_GameTimer* timer) -> int;
auto CleanUpTimers() -> void;
auto ExcuteTimers() -> void;
}; // namespace GameTimer