Files
DanhengServer-OpenSource/GameServer/KcpSharp/IKcpConversationUpdateNotificationSource.cs
2024-02-25 16:45:05 +08:00

9 lines
193 B
C#

namespace EggLink.DanhengServer.KcpSharp
{
internal interface IKcpConversationUpdateNotificationSource
{
ReadOnlyMemory<byte> Packet { get; }
void Release();
}
}