SRMP-Public/SRMP/Lidgren.Network/NetFragmentationInfo.cs

13 lines
210 B
C#
Raw Permalink Normal View History

2023-05-29 22:23:11 +02:00
using System;
namespace Lidgren.Network
{
public sealed class NetFragmentationInfo
{
public int TotalFragmentCount;
public bool[] Received;
public int TotalReceived;
public int FragmentSize;
}
}