16 lines
306 B
C
Raw Permalink Normal View History

2023-10-08 10:24:48 +08:00
#pragma once
#include "il2cpp-config.h"
namespace il2cpp
{
namespace vm
{
class LIBIL2CPP_CODEGEN_API MetadataLoader
{
public:
static void* LoadMetadataFile(const char* fileName);
static void UnloadMetadataFile(void* fileBuffer);
};
} // namespace vm
} // namespace il2cpp