暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

Il2CppGenericClassCompare.h 400B

123456789101112131415161718
  1. #pragma once
  2. #include "utils/KeyWrapper.h"
  3. struct Il2CppGenericClass;
  4. namespace il2cpp
  5. {
  6. namespace metadata
  7. {
  8. class Il2CppGenericClassCompare
  9. {
  10. public:
  11. bool operator()(const Il2CppGenericClass* t1, const Il2CppGenericClass* t2) const;
  12. static bool Compare(const Il2CppGenericClass* t1, const Il2CppGenericClass* t2);
  13. };
  14. } /* namespace vm */
  15. } /* namespace il2cpp */