diff --git a/Assets/Mirror/Runtime/Transport/Transport.cs b/Assets/Mirror/Runtime/Transport/Transport.cs index 94a8a39ca..e74c9a30f 100644 --- a/Assets/Mirror/Runtime/Transport/Transport.cs +++ b/Assets/Mirror/Runtime/Transport/Transport.cs @@ -131,6 +131,11 @@ public virtual bool Available() /// Calls ServerSend by default. Can be overwritten by transports that can send to multiple /// clients at once more efficiently if needed. /// + /// The list of client connection ids to send the data to + /// The channel to be used. Transports can use channels to implement + /// other features such as unreliable, encryption, compression, etc... + /// + /// true if the data was sent to all clients internal virtual bool ServerSend(List connectionIds, int channelId, byte[] data) { // true by default (for empty lists)