mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-15 03:30:53 +01:00
13 lines
222 B
C#
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;
|
|
}
|
|
}
|