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

13 lines
409 B
C#

namespace Il2CppInspector.Next.Metadata;
using ParameterIndex = int;
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; }
}