mirror of
https://github.com/LukeFZ/Il2CppInspectorRedux.git
synced 2025-12-12 06:19:58 +05:00
10 lines
217 B
C#
10 lines
217 B
C#
using VersionedSerialization.Attributes;
|
|
|
|
namespace Il2CppInspector.Next.BinaryMetadata;
|
|
|
|
[VersionedStruct]
|
|
public partial record struct Il2CppTokenRangePair
|
|
{
|
|
public uint Token;
|
|
public Il2CppRange Range;
|
|
} |