Path.h 295 B

1234567891011121314151617
  1. #pragma once
  2. #include "il2cpp-config.h"
  3. #include <string>
  4. namespace il2cpp
  5. {
  6. namespace vm
  7. {
  8. class LIBIL2CPP_CODEGEN_API Path
  9. {
  10. public:
  11. static void SetTempPath(const char* path);
  12. static std::string GetTempPath();
  13. };
  14. } /* namespace vm */
  15. } /* namespace il2cpp */