1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| #pragma once
|
| #include "utils/KeyWrapper.h"
|
| struct Il2CppGenericMethod;
|
| namespace il2cpp
| {
| namespace metadata
| {
| struct Il2CppGenericMethodCompare
| {
| bool operator()(const Il2CppGenericMethod* m1, const Il2CppGenericMethod* m2) const;
| static bool Equals(const Il2CppGenericMethod* m1, const Il2CppGenericMethod* m2);
| };
| } /* namespace metadata */
| } /* namespace il2cpp */
|
|