WutheringWaves/KcpSharp/KcpSendReceiveBufferItem.cs

10 lines
196 B
C#
Raw Normal View History

2024-02-07 21:41:39 +00:00
namespace KcpSharp
{
internal struct KcpSendReceiveBufferItem
{
public KcpBuffer Data;
public KcpPacketHeader Segment;
public KcpSendSegmentStats Stats;
}
}