Runtime.h 321 B

12345678910111213141516171819
  1. #pragma once
  2. #include <string>
  3. namespace il2cpp
  4. {
  5. namespace utils
  6. {
  7. class LIBIL2CPP_CODEGEN_API Runtime
  8. {
  9. public:
  10. static NORETURN void Abort();
  11. #if !defined(RUNTIME_MONO)
  12. static void SetDataDir(const char *path);
  13. #endif
  14. static std::string GetDataDir();
  15. };
  16. } // utils
  17. } // il2cpp