11
This commit is contained in:
18
csgo2/timer.h
Normal file
18
csgo2/timer.h
Normal file
@@ -0,0 +1,18 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user