mirror of
https://github.com/LukeFZ/Il2CppInspectorRedux.git
synced 2025-12-10 05:19:44 +05:00
11 lines
296 B
C#
11 lines
296 B
C#
namespace Il2CppInspector.Next.Metadata;
|
|
|
|
using VersionedSerialization.Attributes;
|
|
using StringLiteralIndex = int;
|
|
|
|
[VersionedStruct]
|
|
public partial record struct Il2CppStringLiteral
|
|
{
|
|
public uint Length { get; private set; }
|
|
public StringLiteralIndex DataIndex { get; private set; }
|
|
} |