import { globalScene } from "#app/global-scene"; import { Phase } from "#app/phase"; import { Mode } from "#app/ui/ui"; export class EndEvolutionPhase extends Phase { start() { super.start(); globalScene.ui.setModeForceTransition(Mode.MESSAGE).then(() => this.end()); } }