Sections.h 193 B

12345678910111213
  1. #pragma once
  2. #include <string>
  3. #include <vector>
  4. extern std::vector<std::string> ModuleOrder;
  5. void Init();
  6. void Outer();
  7. void DrawSection(const std::string& sectionName);
  8. void Status();