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

18 lines
495 B
C#

namespace Il2CppInspector.Next.Metadata;
using VersionedSerialization.Attributes;
using StringIndex = int;
[VersionedStruct]
public partial record struct Il2CppParameterDefinition
{
public StringIndex NameIndex { get; private set; }
public uint Token { get; private set; }
[VersionCondition(LessThan = "24.0")]
public int CustomAttributeIndex { get; private set; }
public TypeIndex TypeIndex { get; private set; }
public readonly bool IsValid => NameIndex != 0;
}