mirror of
https://github.com/LukeFZ/Il2CppInspectorRedux.git
synced 2025-12-16 08:19:40 +05:00
10 lines
244 B
C#
10 lines
244 B
C#
using VersionedSerialization.Attributes;
|
|
|
|
namespace Il2CppInspector.Next.Metadata;
|
|
|
|
[VersionedStruct]
|
|
public partial record struct Il2CppMetadataRange
|
|
{
|
|
public int Start { get; private set; }
|
|
public int Length { get; private set; }
|
|
} |