LearnWithTouch/App/LearnWithTouch_ios/Libraries/libil2cpp/include/metadata/GenericMethod.h
2019-07-01 14:33:21 +02:00

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 */