Exemplo n.º 1
0
 internal void InternalSendToAll(short msgType, BaseNetworkMessage msg)
 {
     if (m_activeTransport != null)
     {
         m_activeTransport.SendToAll(msgType, msg);
         return;
     }
     if (NetConfig.logFilter >= LogFilter.Error)
     {
         Log.Error("Failed to send message to connection ID '" + 0 + ", not found in connection list");
     }
 }