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