mirror of
https://github.com/LukeFZ/Il2CppInspectorRedux.git
synced 2025-12-10 05:19:44 +05:00
13 lines
412 B
C#
13 lines
412 B
C#
namespace Il2CppInspector.Next.Metadata;
|
|
|
|
using VersionedSerialization.Attributes;
|
|
using GenericParameterIndex = int;
|
|
|
|
[VersionedStruct]
|
|
public partial record 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; }
|
|
} |