diff --git a/Lidgren.Network/NetConnectionStatistics.cs b/Lidgren.Network/NetConnectionStatistics.cs index a5159ed..b3b2d00 100644 --- a/Lidgren.Network/NetConnectionStatistics.cs +++ b/Lidgren.Network/NetConnectionStatistics.cs @@ -72,6 +72,11 @@ namespace Lidgren.Network /// public int ReceivedBytes { get { return m_receivedBytes; } } + /// + /// Gets the number of resent reliable messages for this connection + /// + public int ResentMessages { get { return m_resentMessages; } } + public double LastSendRespondedTo { get { return m_connection.m_lastSendRespondedTo; } } public int MostSends