SRMP-Public/SRMP/Lidgren.Network/NetFragmentationInfo.cs
2023-05-29 22:23:11 +02:00

12 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;
}
}