mirror of
https://github.com/LukeFZ/Il2CppInspectorRedux.git
synced 2025-12-11 13:59:45 +05:00
14 lines
353 B
C#
14 lines
353 B
C#
using VersionedSerialization.Attributes;
|
|
|
|
namespace Il2CppInspector.Next.BinaryMetadata;
|
|
|
|
using MethodIndex = int;
|
|
using GenericInstIndex = int;
|
|
|
|
[VersionedStruct]
|
|
public partial record struct Il2CppMethodSpec
|
|
{
|
|
public MethodIndex MethodDefinitionIndex;
|
|
public GenericInstIndex ClassIndexIndex;
|
|
public GenericInstIndex MethodIndexIndex;
|
|
} |