Exemple #1
0
 public float DistanceTo(HitboxHaver other)
 {
     return(Hitbox.DistanceTo(other.Hitbox, Position, other.Position));
 }
Exemple #2
0
 public float AngleTo(HitboxHaver other)
 {
     return(Hitbox.AngleTo(other.Hitbox, Position, other.Position));
 }
Exemple #3
0
 public bool Intersects(HitboxHaver other)
 {
     return(Hitbox.Intersects(other.Hitbox, Position, other.Position));
 }