Files
Il2CppInspectorRedux/Il2CppInspector.Common/Next/Metadata/Il2CppFieldRef.cs

13 lines
308 B
C#

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