public void Collide(Entity other) { if (other is Player) { Dispose(); } }
public bool BroadPhaseFilter(Entity other) { if (other is Projectile) { return false; } return false; }
public bool BroadPhaseFilter(Entity other) { if (other is Player) { return true; } return false; }
public void Collide(Entity other) { OnHit(); }