26 lines
544 B
C++
26 lines
544 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
struct MethodInfo;
|
|
struct Il2CppGenericMethod;
|
|
struct Il2CppGenericContext;
|
|
|
|
namespace il2cpp
|
|
{
|
|
namespace metadata
|
|
{
|
|
class GenericMethod
|
|
{
|
|
public:
|
|
// exported
|
|
|
|
public:
|
|
//internal
|
|
static const MethodInfo* GetMethod(const Il2CppGenericMethod* gmethod);
|
|
static const Il2CppGenericContext* GetContext(const Il2CppGenericMethod* gmethod);
|
|
static std::string GetFullName(const Il2CppGenericMethod* gmethod);
|
|
};
|
|
} /* namespace vm */
|
|
} /* namespace il2cpp */
|