상속: 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();
 }