mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-10-23 13:35:53 +02:00
11 lines
249 B
TypeScript
11 lines
249 B
TypeScript
import { globalScene } from "#app/global-scene";
|
|
import { BattlePhase } from "./battle-phase";
|
|
|
|
export class HidePartyExpBarPhase extends BattlePhase {
|
|
start() {
|
|
super.start();
|
|
|
|
globalScene.partyExpBar.hide().then(() => this.end());
|
|
}
|
|
}
|