15 lines
303 B
C#
15 lines
303 B
C#
using System.Net;
|
|
using NitroxModel.Packets;
|
|
using NitroxModel.Packets.Processors.Abstract;
|
|
|
|
namespace NitroxServer.Communication;
|
|
|
|
public interface INitroxConnection : IProcessorContext
|
|
{
|
|
IPEndPoint Endpoint { get; }
|
|
|
|
NitroxConnectionState State { get; }
|
|
|
|
void SendPacket(Packet packet);
|
|
}
|