mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-16 07:12:27 +02:00
15 lines
482 B
C#
15 lines
482 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Robust.Shared.Serialization.Manager
|
|
{
|
|
// TODO Serialization: make this actually not kanser to use holy moly (& allow generics)
|
|
public interface ISerializationContext
|
|
{
|
|
Dictionary<(Type, Type), object> TypeReaders { get; }
|
|
Dictionary<Type, object> TypeWriters { get; }
|
|
Dictionary<Type, object> TypeCopiers { get; }
|
|
Dictionary<(Type, Type), object> TypeValidators { get; }
|
|
}
|
|
}
|