mirror of
https://github.com/LukeFZ/Il2CppInspectorRedux.git
synced 2025-12-18 17:29:40 +05:00
14 lines
425 B
C#
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; }
|
|
} |