10 lines
273 B
C#
10 lines
273 B
C#
using VersionedSerialization.Attributes;
|
|
|
|
namespace Il2CppInspector.Next.Metadata;
|
|
|
|
[VersionedStruct]
|
|
public partial record struct Il2CppMetadataUsagePair
|
|
{
|
|
public uint DestinationIndex { get; private set; }
|
|
public uint EncodedSourceIndex { get; private set; }
|
|
} |