InfiniteStamina.h 404 B

12345678910111213141516171819202122232425
  1. #pragma once
  2. #include "../FunctionIncludes.h"
  3. namespace cheat {
  4. class InfiniteStamina : public Function {
  5. public:
  6. ConfigField<bool> f_Enabled;
  7. Hotkey f_Hotkey;
  8. bool OnPropertySet(app::PropType__Enum propType);
  9. void GUI() override;
  10. void Outer() override;
  11. void Status() override;
  12. std::string getModule() override;
  13. static InfiniteStamina& getInstance();
  14. InfiniteStamina();
  15. };
  16. }