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

14 lines
425 B
C#

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