Inheritance: Server.Network.Packet
コード例 #1
0
ファイル: Network.cs プロジェクト: avatar21/runuo
		static void SendToAll( ConsoleData packet )
		{
			packet.Acquire();
			for ( int i = 0; i < m_Auth.Count; i++ )
				((NetState)m_Auth[i]).Send( packet );
			packet.Release();
		}
コード例 #2
0
ファイル: Network.cs プロジェクト: FreeReign/forkuo
 static void SendToAll(ConsoleData packet)
 {
     packet.Acquire();
     for (int i = 0; i < m_Auth.Count; i++)
         ((NetState)m_Auth[i]).Send(packet);
     packet.Release();
 }