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

15 lines
350 B
C#

using VersionedSerialization.Attributes;
namespace Il2CppInspector.Next.BinaryMetadata;
[VersionedStruct]
public partial struct Il2CppTokenIndexMethodTuple
{
public uint Token;
public int Index;
[CustomSerialization("reader.ReadNUInt();", "is32Bit ? 4 : 8")]
public ulong Method; // void**
public uint GenericMethodIndex;
}