Exemplo n.º 1
0
 public void RemoveRegister(IGameLifecycle obj)
 {
     if (!obj.ExIsNullOjbect())
     {
         mGameLisfcycle.Remove(obj);
     }
 }
Exemplo n.º 2
0
 private T Convert <T>(IGameLifecycle obj) where T : class, IGameLifecycle
 {
     if (!obj.ExIsNullOjbect())
     {
         return(obj as T);
     }
     return(null);
 }