Exemplo n.º 1
0
 public bool InCollision(SimpleSprite other)
 {
     return(BoundingRect.Intersects(other.BoundingRect));
 }
Exemplo n.º 2
0
 public bool IsIntersecting(SimpleSprite other)
 {
     return(BoundingRect.Intersects(other.BoundingRect));
 }