ShowIndicators.h 421 B

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