From 1abb8729196031357b30022f41df726825e34c49 Mon Sep 17 00:00:00 2001 From: Joshjje Date: Sun, 1 Feb 2015 11:00:32 -0500 Subject: [PATCH] Changed NetPeer.SendMessage parameter from List to IList --- Lidgren.Network/NetPeer.Send.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lidgren.Network/NetPeer.Send.cs b/Lidgren.Network/NetPeer.Send.cs index 446a55e..c75db17 100644 --- a/Lidgren.Network/NetPeer.Send.cs +++ b/Lidgren.Network/NetPeer.Send.cs @@ -95,7 +95,7 @@ namespace Lidgren.Network /// The list of recipients to send to /// How to deliver the message /// Sequence channel within the delivery method - public void SendMessage(NetOutgoingMessage msg, List recipients, NetDeliveryMethod method, int sequenceChannel) + public void SendMessage(NetOutgoingMessage msg, IList recipients, NetDeliveryMethod method, int sequenceChannel) { if (msg == null) throw new ArgumentNullException("msg");