You've already forked lidgren-network-gen3
mirror of
https://github.com/lidgren/lidgren-network-gen3.git
synced 2026-05-18 16:16:35 +09:00
Changed NetPeer.SendMessage parameter from List to IList
This commit is contained in:
@@ -95,7 +95,7 @@ namespace Lidgren.Network
|
|||||||
/// <param name="recipients">The list of recipients to send to</param>
|
/// <param name="recipients">The list of recipients to send to</param>
|
||||||
/// <param name="method">How to deliver the message</param>
|
/// <param name="method">How to deliver the message</param>
|
||||||
/// <param name="sequenceChannel">Sequence channel within the delivery method</param>
|
/// <param name="sequenceChannel">Sequence channel within the delivery method</param>
|
||||||
public void SendMessage(NetOutgoingMessage msg, List<NetConnection> recipients, NetDeliveryMethod method, int sequenceChannel)
|
public void SendMessage(NetOutgoingMessage msg, IList<NetConnection> recipients, NetDeliveryMethod method, int sequenceChannel)
|
||||||
{
|
{
|
||||||
if (msg == null)
|
if (msg == null)
|
||||||
throw new ArgumentNullException("msg");
|
throw new ArgumentNullException("msg");
|
||||||
|
|||||||
Reference in New Issue
Block a user