public override void OnCollision(BaseGameObject other) { if (other is Asteroids) { return; } Destroy(); other.Destroy(); new Asteroids(); new Asteroids(); }
public virtual void OnCollision(BaseGameObject other) { }