Files
Il2CppInspectorRedux/Il2CppInspector.Common/Next/Metadata/Il2CppInterfaceOffsetPair.cs
2025-08-22 04:53:00 +02:00

10 lines
269 B
C#

using VersionedSerialization.Attributes;
namespace Il2CppInspector.Next.Metadata;
[VersionedStruct]
public partial record struct Il2CppInterfaceOffsetPair
{
public TypeIndex InterfaceTypeIndex { get; private set; }
public int Offset { get; private set; }
}