10 lines
186 B
C#
10 lines
186 B
C#
using System;
|
|
|
|
namespace KcpSharp
|
|
{
|
|
internal interface IKcpConversationUpdateNotificationSource
|
|
{
|
|
ReadOnlyMemory<byte> Packet { get; }
|
|
void Release();
|
|
}
|
|
}
|