Files
Studio/Assets/Scripts/ExternalAssets/MessagePack/Annotations/IMessagePackSerializationCallbackReceiver.cs
2025-05-21 12:10:38 +09:00

13 lines
333 B
C#

// Copyright (c) All contributors. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
namespace MessagePack
{
public interface IMessagePackSerializationCallbackReceiver
{
void OnBeforeSerialize();
void OnAfterDeserialize();
}
}