1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| #pragma once
|
| #include "utils/KeyWrapper.h"
|
| struct Il2CppType;
|
| namespace il2cpp
| {
| namespace metadata
| {
| class Il2CppTypeEqualityComparer
| {
| public:
| bool operator()(const Il2CppType* t1, const Il2CppType* t2) const { return AreEqual(t1, t2); }
| static bool AreEqual(const Il2CppType* t1, const Il2CppType* t2);
| };
|
| class Il2CppTypeLess
| {
| public:
| bool operator()(const Il2CppType* t1, const Il2CppType* t2) const;
| };
| } /* namespace vm */
| } /* namespace il2cpp */
|
|