Files
Il2CppInspectorRedux/Il2CppInspector.Common/Next/BinaryMetadata/Il2CppMethodSpec.cs
2024-08-13 18:34:22 +02:00

14 lines
346 B
C#

using VersionedSerialization.Attributes;
namespace Il2CppInspector.Next.BinaryMetadata;
using MethodIndex = int;
using GenericInstIndex = int;
[VersionedStruct]
public partial struct Il2CppMethodSpec
{
public MethodIndex MethodDefinitionIndex;
public GenericInstIndex ClassIndexIndex;
public GenericInstIndex MethodIndexIndex;
}