space-pew/Lidgren.Network/NetFragmentationInfo.cs

13 lines
210 B
C#
Raw Permalink Normal View History

2015-12-04 10:23:49 +01:00
using System;
namespace Lidgren.Network
{
public sealed class NetFragmentationInfo
{
public int TotalFragmentCount;
public bool[] Received;
public int TotalReceived;
public int FragmentSize;
}
}