About.h 242 B

123456789101112131415161718
  1. #pragma once
  2. #include "../FunctionIncludes.h"
  3. namespace cheat {
  4. class About : public Function {
  5. public:
  6. std::string mVersion;
  7. void GUI() override;
  8. std::string getModule() override;
  9. About();
  10. static About& getInstance();
  11. };
  12. }