mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-04 11:07:12 +02:00
Should improve stability or whatever. Also some convenient stream features.
13 lines
210 B
C#
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;
|
|
}
|
|
}
|