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/framework/framework.cpp
2020-08-04 13:13:01 -04:00

30 lines
492 B
C++

/*
*
* The framework interface init file used for connecting the interfaces
*with the rest of the module.
*
*/
// Stuff to init
#include "entitys.hpp"
#include "trace.hpp"
#include "framework.hpp"
namespace modules {
namespace csgo {
namespace framework {
void Init() {
// Init the entity mgr so the framework knows about what entitys we have
entitys::Init();
// Ray tracing!
trace::Init();
}
} // namespace framework
} // namespace csgo
} // namespace modules