WutheringWaves/KcpSharp/IKcpConversationUpdateNotificationSource.cs
2024-02-08 00:41:39 +03:00

10 lines
186 B
C#

using System;
namespace KcpSharp
{
internal interface IKcpConversationUpdateNotificationSource
{
ReadOnlyMemory<byte> Packet { get; }
void Release();
}
}