Example #1
0
 public bool InCollision(SimpleSprite other)
 {
     return(BoundingRect.Intersects(other.BoundingRect));
 }
Example #2
0
 public bool IsIntersecting(SimpleSprite other)
 {
     return(BoundingRect.Intersects(other.BoundingRect));
 }