10 lines
247 B
C#
10 lines
247 B
C#
using VersionedSerialization.Attributes;
|
|
|
|
namespace Il2CppInspector.Next.Metadata;
|
|
|
|
[VersionedStruct]
|
|
public partial record struct Il2CppMetadataUsageList
|
|
{
|
|
public int Start { get; private set; }
|
|
public int Count { get; private set; }
|
|
} |