1234567891011121314151617181920212223 |
- #pragma once
- #include "../FunctionIncludes.h"
- namespace cheat {
- class GodMode : public Function {
- public:
- ConfigField<bool> f_Enabled;
- Hotkey f_Hotkey;
- void GUI() override;
- void Outer() override;
- void Status() override;
- std::string getModule() override;
- static GodMode& getInstance();
- GodMode();
- };
- }
|