mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-10-23 21:45:50 +02:00
12 lines
180 B
TypeScript
12 lines
180 B
TypeScript
import { BattlePhase } from "./battle-phase";
|
|
|
|
export class NewBattlePhase extends BattlePhase {
|
|
start() {
|
|
super.start();
|
|
|
|
this.scene.newBattle();
|
|
|
|
this.end();
|
|
}
|
|
}
|