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