You've already forked lidgren-network-gen3
mirror of
https://github.com/lidgren/lidgren-network-gen3.git
synced 2026-05-06 02:11:06 +09: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;
|
|
}
|
|
}
|