コード例 #1
0
 public override bool Over(PetalHitbox other) => Hitboxes.Any(other.Over);
コード例 #2
0
 public override bool Over(PetalHitbox other)
 {
     throw new NotImplementedException();
 }
コード例 #3
0
 public override bool Over(PetalHitbox other) => Geom.Overlap(
     new Circle(other.Center1, other.Radius),
     new Circle(other.Center2, other.Radius),
     Circle
     );