public override bool Over(PetalHitbox other) => Hitboxes.Any(other.Over);
Exemplo n.º 2
0
 public override bool Over(PetalHitbox other)
 {
     throw new NotImplementedException();
 }
Exemplo n.º 3
0
 public override bool Over(PetalHitbox other) => Geom.Overlap(
     new Circle(other.Center1, other.Radius),
     new Circle(other.Center2, other.Radius),
     Circle
     );