NoCooldown.h 464 B

123456789101112131415161718192021222324252627
  1. #pragma once
  2. #include "../FunctionIncludes.h"
  3. namespace cheat {
  4. class NoCooldown : public Function {
  5. public:
  6. ConfigField<bool> f_EnabledSkill;
  7. ConfigField<bool> f_EnabledBow;
  8. ConfigField<bool> f_EnabledSprint;
  9. Hotkey f_HotkeySkill;
  10. Hotkey f_HotkeyBow;
  11. Hotkey f_HotkeySprint;
  12. void GUI() override;
  13. void Outer() override;
  14. void Status() override;
  15. std::string getModule() override;
  16. static NoCooldown& getInstance();
  17. NoCooldown();
  18. };
  19. }