30 lines
492 B
C++
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
|