No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Il2CppGenericMethodCompare.h 400B

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