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

19 lines
409 B
C++

#pragma once
#include "utils/dynamic_array.h"
struct Il2CppType;
namespace il2cpp
{
namespace metadata
{
struct Il2CppSignatureHash
{
public:
size_t operator()(const il2cpp::utils::dynamic_array<const Il2CppType*>& signature) const;
static size_t Hash(const il2cpp::utils::dynamic_array<const Il2CppType*>& signature);
};
} /* namespace metadata */
} /* namespace il2cpp */