mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-15 03:30:53 +01:00
19 lines
281 B
C#
19 lines
281 B
C#
using System;
|
|
|
|
namespace Lidgren.Network
|
|
{
|
|
internal struct NetStoredReliableMessage
|
|
{
|
|
public int NumSent;
|
|
public float LastSent;
|
|
public NetOutgoingMessage Message;
|
|
|
|
public void Reset()
|
|
{
|
|
NumSent = 0;
|
|
LastSent = 0;
|
|
Message = null;
|
|
}
|
|
}
|
|
}
|