WutheringWaves/KcpSharp/IKcpConversationUpdateNotificationSource.cs

11 lines
186 B
C#
Raw Normal View History

2024-02-07 21:41:39 +00:00
using System;
namespace KcpSharp
{
internal interface IKcpConversationUpdateNotificationSource
{
ReadOnlyMemory<byte> Packet { get; }
void Release();
}
}