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