This repository has been archived on 2026-05-06. You can view files and clone it, but cannot push or open issues/pull-requests.
caihong/web_xcode/Libraries/libil2cpp/include/metadata/Il2CppGenericMethodHash.h

17 lines
326 B
C++

#pragma once
struct Il2CppGenericMethod;
namespace il2cpp
{
namespace metadata
{
struct Il2CppGenericMethodHash
{
public:
size_t operator()(const Il2CppGenericMethod* method) const;
static size_t Hash(const Il2CppGenericMethod* method);
};
} /* namespace metadata */
} /* namespace il2cpp */