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 TypeWriters { get; } Dictionary TypeCopiers { get; } Dictionary<(Type, Type), object> TypeValidators { get; } } }