Files
Il2CppInspectorRedux/Il2CppInspector.Common/Next/Metadata/Il2CppStringLiteral.cs
2025-07-21 17:03:20 +02:00

12 lines
338 B
C#

namespace Il2CppInspector.Next.Metadata;
using VersionedSerialization.Attributes;
using StringLiteralIndex = int;
[VersionedStruct]
public partial record struct Il2CppStringLiteral
{
[VersionCondition(LessThan = "31.0")]
public uint Length { get; private set; }
public StringLiteralIndex DataIndex { get; private set; }
}