mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-15 14:52:35 +02:00
Still needed in rare cases so not really deprecated and we already discourage coders from using it where possible.
14 lines
399 B
C#
14 lines
399 B
C#
namespace Robust.Shared.Serialization;
|
|
|
|
/// <summary>
|
|
/// Provides a method that gets executed after deserialization is complete and a method that gets executed before serialization
|
|
/// </summary>
|
|
[RequiresExplicitImplementation]
|
|
public interface ISerializationHooks
|
|
{
|
|
/// <summary>
|
|
/// Gets executed after deserialization is complete
|
|
/// </summary>
|
|
void AfterDeserialization() {}
|
|
}
|