Files
LuaCsForBarotraumaEP/Lidgren.Network/NetFragmentationInfo.cs

13 lines
210 B
C#

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