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); }