mirror of
https://github.com/LukeFZ/Il2CppInspectorRedux.git
synced 2025-12-18 09:19:40 +05:00
13 lines
361 B
C#
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; }
|
|
} |