Exemplo n.º 1
0
 public static void AddMsgListener(IMsgListener l)
 {
     if (msgListeners == null)
     {
         msgListeners = new List <IMsgListener>();
     }
     msgListeners.Add(l);
 }
Exemplo n.º 2
0
 public static void RemoveMsgListener(IMsgListener l)
 {
     msgListeners.Remove(l);
 }