This repository has been archived on 2024-06-13. You can view files and clone it, but cannot push or open issues or pull requests.
nekohook/modules/csgo/features/features.cpp
2020-08-04 13:13:01 -04:00

24 lines
451 B
C++

/*
*
* The cheats file that manages the additional cheat features added by this
*module
*
*
*/
#include "../../../framework/gameticks.hpp" // Stuff to init with
#include "esp.hpp" // Stuff to init
#include "features.hpp"
namespace modules {
namespace csgo {
namespace features {
void Init() { wtickmgr.REventDuring(cheats::esp::WorldTick); }
} // namespace features
} // namespace csgo
} // namespace modules