Inheritance: Server.Network.Packet
Exemple #1
0
		static void SendToAll( ConsoleData packet )
		{
			packet.Acquire();
			for ( int i = 0; i < m_Auth.Count; i++ )
				((NetState)m_Auth[i]).Send( packet );
			packet.Release();
		}
Exemple #2
0
 static void SendToAll(ConsoleData packet)
 {
     packet.Acquire();
     for (int i = 0; i < m_Auth.Count; i++)
         ((NetState)m_Auth[i]).Send(packet);
     packet.Release();
 }