pokerogue/src/phases/new-battle-phase.ts
2024-08-19 03:23:52 +01:00

12 lines
180 B
TypeScript

import { BattlePhase } from "./battle-phase";
export class NewBattlePhase extends BattlePhase {
start() {
super.start();
this.scene.newBattle();
this.end();
}
}