Files
Il2CppInspectorRedux/Il2CppInspector.Common/Next/Metadata/Il2CppInlineArrayLength.cs

10 lines
258 B
C#

using VersionedSerialization.Attributes;
namespace Il2CppInspector.Next.Metadata;
[VersionedStruct]
public partial record struct Il2CppInlineArrayLength
{
public TypeIndex TypeIndex { get; private set; }
public int Length { get; private set; }
}