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

30 lines
510 B
C++

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