Path.h 348 B

1234567891011121314151617181920
  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 GetApplicationFolder();
  14. static std::string GetTempPath();
  15. static bool IsAbsolute(const std::string& path);
  16. };
  17. }
  18. }