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

13 lines
301 B
C#

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