Exemplo n.º 1
0
 protected bool UpdateUpdatable(IUpdatable updatable, float deltaTime)
 {
     if (updatable.Equals(null))
     {
         return(false);
     }
     updatable.FastUpdate(deltaTime);
     return(true);
 }