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