mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-15 03:30:53 +01:00
12 lines
277 B
C#
12 lines
277 B
C#
using System;
|
|
|
|
namespace Lidgren.Network
|
|
{
|
|
internal abstract class SenderChannelBase
|
|
{
|
|
internal abstract NetSendResult Send(float now, NetOutgoingMessage message);
|
|
internal abstract void SendQueuedMessages(float now);
|
|
internal abstract void Reset();
|
|
}
|
|
}
|