mirror of
https://github.com/LukeFZ/Il2CppInspectorRedux.git
synced 2026-03-22 00:18:18 +05:00
this is done now to reduce the migration burden in the future when this is made into a nuget package (hopefully)
9 lines
323 B
C#
9 lines
323 B
C#
namespace VersionedSerialization;
|
|
|
|
public interface IReadable
|
|
{
|
|
public void Read<TReader>(ref Reader<TReader> reader, in StructVersion version = default)
|
|
where TReader : IReader, allows ref struct;
|
|
|
|
public static abstract int Size(in StructVersion version = default, in ReaderConfig config = default);
|
|
} |