暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

Runtime.h 287B

1234567891011121314151617
  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. static void SetDataDir(const char *path);
  12. static std::string GetDataDir();
  13. };
  14. } // utils
  15. } // il2cpp