mirror of
https://github.com/LukeFZ/Il2CppInspectorRedux.git
synced 2026-03-27 02:48:35 +05:00
add VersionedSerialization + source generator
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
using VersionedSerialization.Generator.Utils;
|
||||
|
||||
namespace VersionedSerialization.Generator.Models;
|
||||
|
||||
public sealed record ObjectSerializationInfo(
|
||||
string Namespace,
|
||||
string Name,
|
||||
bool HasBaseType,
|
||||
bool IsStruct,
|
||||
bool ShouldGenerateSizeMethod,
|
||||
bool CanGenerateSizeMethod,
|
||||
ImmutableEquatableArray<PropertySerializationInfo> Properties
|
||||
);
|
||||
Reference in New Issue
Block a user