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

11 lines
289 B
C#

namespace Il2CppInspector.Next.Metadata;
using VersionedSerialization.Attributes;
using StringLiteralIndex = int;
[VersionedStruct]
public partial struct Il2CppStringLiteral
{
public uint Length { get; private set; }
public StringLiteralIndex DataIndex { get; private set; }
}