10 lines
196 B
C#
10 lines
196 B
C#
|
namespace KcpSharp
|
|||
|
{
|
|||
|
internal struct KcpSendReceiveBufferItem
|
|||
|
{
|
|||
|
public KcpBuffer Data;
|
|||
|
public KcpPacketHeader Segment;
|
|||
|
public KcpSendSegmentStats Stats;
|
|||
|
}
|
|||
|
}
|