LearnWithTouch/App/LearnWithTouch_ios/Libraries/libil2cpp/include/utils/Runtime.h

20 lines
321 B
C
Raw Normal View History

2019-07-01 14:33:21 +02:00
#pragma once
#include <string>
namespace il2cpp
{
namespace utils
{
class LIBIL2CPP_CODEGEN_API Runtime
{
public:
static NORETURN void Abort();
#if !defined(RUNTIME_MONO)
static void SetDataDir(const char *path);
#endif
static std::string GetDataDir();
};
} // utils
} // il2cpp