mirror of
https://github.com/MikuLeaks/KianaBH3.git
synced 2025-12-14 05:44:34 +01:00
Init enter game
This commit is contained in:
17
KcpSharp/Base/KcpSendSegmentStats.cs
Normal file
17
KcpSharp/Base/KcpSendSegmentStats.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
namespace KianaBH.KcpSharp.Base;
|
||||
|
||||
internal readonly struct KcpSendSegmentStats
|
||||
{
|
||||
public KcpSendSegmentStats(uint resendTimestamp, uint rto, uint fastAck, uint transmitCount)
|
||||
{
|
||||
ResendTimestamp = resendTimestamp;
|
||||
Rto = rto;
|
||||
FastAck = fastAck;
|
||||
TransmitCount = transmitCount;
|
||||
}
|
||||
|
||||
public uint ResendTimestamp { get; }
|
||||
public uint Rto { get; }
|
||||
public uint FastAck { get; }
|
||||
public uint TransmitCount { get; }
|
||||
}
|
||||
Reference in New Issue
Block a user