Files
RobustToolbox/Robust.Shared/Serialization/Manager/ISerializationContext.cs
T
DrSmugleafandGitHub 5f31036ab2 Cleanup serialization code (#1735)
* Cleanup serialization code

* Merge fixes

* american codebase
2021-05-02 14:23:39 +02:00

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; }
}
}