Files
RobustToolbox/Lidgren.Network/NetFragmentationInfo.cs
2011-05-11 03:58:10 +00:00

13 lines
222 B
C#

using System;
namespace Lidgren.Network
{
public sealed class NetFragmentationInfo
{
public int TotalFragmentCount;
public bool[] Received;
public int TotalReceived;
public int FragmentSize;
}
}