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
449 B
C++

/*
*
* The cheats file that manages the additional cheat features added by this
*module
*
*
*/
#include "aimbot.hpp"
#include "airstuck.hpp"
#include "esp.hpp" // Stuff to init
#include "misc.hpp"
#include "spam.hpp"
#include "features.hpp"
namespace modules::source::features {
void Init() {
aimbot::Init();
esp::Init();
airstuck::Init();
spam::Init();
misc::Init();
}
} // namespace modules::source::features