Exemplo n.º 1
0
 void HandleEvent <T> (string e, T args)
 {
     if (e != null)
     {
         IHandle ih = null;
         if (event_dics.TryGetValue(e, out ih))
         {
             ih.HandleEvent(e, args);
         }
     }
 }