OpenTeamImmediately.h 405 B

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