14 lines
307 B
C#
14 lines
307 B
C#
using VersionedSerialization.Attributes;
|
|
|
|
namespace Il2CppInspector.Next.BinaryMetadata;
|
|
|
|
[VersionedStruct]
|
|
public partial record struct Il2CppGenericInst
|
|
{
|
|
public readonly bool Valid => TypeArgc > 0;
|
|
|
|
[NativeInteger]
|
|
public uint TypeArgc;
|
|
|
|
public Pointer<Pointer<Il2CppType>> TypeArgv;
|
|
} |