public override void Collide(Sprite other, Vector2 screenXY) { if (other is InvaderBase) { Alive = false; (other as InvaderBase).OnDead(); return; } if (other is Mothership) { Alive = false; } }