using NitroxModel.Packets; namespace NitroxClient.Communication.Abstract; public interface IPacketSender { /// /// Sends the packet. Returns true if packet was not suppressed. /// /// The packet to send. /// True if not suppressed and actually sent. bool Send(T packet) where T : Packet; }