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

12 lines
286 B
C#

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