add new struct definitions
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
using VersionedSerialization.Attributes;
|
||||
|
||||
namespace Il2CppInspector.Next.BinaryMetadata;
|
||||
|
||||
using MethodIndex = int;
|
||||
using TypeIndex = int;
|
||||
|
||||
[VersionedStruct]
|
||||
public partial struct Il2CppRgctxDefinitionData
|
||||
{
|
||||
public int Value;
|
||||
|
||||
public readonly MethodIndex MethodIndex => Value;
|
||||
public readonly TypeIndex TypeIndex => Value;
|
||||
}
|
||||
Reference in New Issue
Block a user