11 lines
295 B
C#
11 lines
295 B
C#
using VersionedSerialization.Attributes;
|
|
|
|
namespace Il2CppInspector.Next.Metadata;
|
|
|
|
[VersionedStruct]
|
|
public partial record struct Il2CppSectionMetadata
|
|
{
|
|
public int Offset { get; private set; }
|
|
public int SectionSize { get; private set; }
|
|
public int Count { get; private set; }
|
|
} |