// Used by the main menu. // Extends Level, because the menu has a ship (and maybe later an alien mothership) // So we need the newAlien and alienDied methods. class Menu : Level { override fun activated() { super.activated() DrunkInvaders.instance.score = 0 DrunkInvaders.instance.lives = 4 } }