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

13 lines
361 B
C#

namespace Il2CppInspector.Next.Metadata;
using VersionedSerialization.Attributes;
using FieldIndex = int;
using TypeIndex = int;
[VersionedStruct]
public partial struct Il2CppFieldMarshaledSize
{
public FieldIndex FieldIndex { get; private set; }
public TypeIndex TypeIndex { get; private set; }
public int MarshaledSize { get; private set; }
}