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

33 lines
473 B
C++

/*
*
* Util init file
*
*
*/
#include "../../../framework/game.hpp"
#include "classes.hpp"
#include "netvars.hpp"
#include "worldtoscreen.hpp"
#if defined(NEKO_TF2)
#include "conditions.hpp"
#endif
#include "util.hpp"
namespace modules::source::util {
void Init() {
events::world.Listen(classes::Init, cat::Order::kBefore);
netvars::Init();
wts::Init();
#if defined(NEKO_TF2)
conditions::Init();
#endif
}
} // namespace modules::source::util