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

12 lines
252 B
C#

using VersionedSerialization.Attributes;
namespace Il2CppInspector.Next.BinaryMetadata;
[VersionedStruct]
public partial struct Il2CppTokenAdjustorThunkPair
{
[Aligned(0)]
public uint Token;
public Il2CppMethodPointer AdjustorThunk;
}