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

12 lines
285 B
C#

using VersionedSerialization.Attributes;
namespace Il2CppInspector.Next.Metadata;
using FieldIndex = int;
[VersionedStruct]
public partial record struct Il2CppFieldRef
{
public TypeIndex TypeIndex { get; private set; }
public FieldIndex FieldIndex { get; private set; }
}