Exemplo n.º 1
0
 public bool IsCrash(BoundingRectangle player)
 {
     if (Bounds.CollidesWith(player))
     {
         return(true);
     }
     else
     {
         return(false);
     }
 }
Exemplo n.º 2
0
 public bool IsExist(BoundingRectangle r)
 {
     if (Bounds.CollidesWith(r))
     {
         return(false);
     }
     else
     {
         return(true);
     }
 }