Files
Il2CppInspectorRedux/Il2CppInspector.Common/Next/Metadata/Il2CppGenericContainer.cs
2024-08-13 18:34:22 +02:00

13 lines
405 B
C#

namespace Il2CppInspector.Next.Metadata;
using VersionedSerialization.Attributes;
using GenericParameterIndex = int;
[VersionedStruct]
public partial struct Il2CppGenericContainer
{
public int OwnerIndex { get; private set; }
public int TypeArgc { get; private set; }
public int IsMethod { get; private set; }
public GenericParameterIndex GenericParameterStart { get; private set; }
}