Files
Il2CppInspectorRedux/Il2CppInspector.Common/Next/Metadata/Il2CppParameterDefaultValue.cs
2025-09-18 23:36:57 +02:00

12 lines
381 B
C#

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