Path.h 297 B

12345678910111213141516171819
  1. #pragma once
  2. #include <string>
  3. #include <stdint.h>
  4. #undef GetTempPath
  5. namespace il2cpp
  6. {
  7. namespace os
  8. {
  9. class Path
  10. {
  11. public:
  12. static std::string GetExecutablePath();
  13. static std::string GetTempPath();
  14. static bool IsAbsolute(const std::string& path);
  15. };
  16. }
  17. }