示例#1
0
 public abstract void OnCollision(Objects other);
示例#2
0
 public override void OnCollision(Objects other)
 {
     //throw new NotImplementedException();
 }
示例#3
0
 public bool IsCollidingWith(Objects other)
 {
     return(CollisionBox.IntersectsWith(other.CollisionBox));
 }