mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-01-18 23:11:11 +00:00
17 lines
303 B
TypeScript
17 lines
303 B
TypeScript
import BattleScene from "./battle-scene";
|
|
|
|
export class BattlePhase {
|
|
protected scene: BattleScene;
|
|
|
|
constructor(scene: BattleScene) {
|
|
this.scene = scene;
|
|
}
|
|
|
|
start() {
|
|
console.log(`%cStart Phase ${this.constructor.name}`, 'color:green;')
|
|
}
|
|
|
|
end() {
|
|
this.scene.shiftPhase();
|
|
}
|
|
} |