pokerogue/src/phase.ts

14 lines
231 B
TypeScript
Raw Normal View History

import { globalScene } from "#app/global-scene";
2023-03-28 14:54:52 -04:00
export class Phase {
2023-03-28 14:54:52 -04:00
start() {
if (globalScene.abilityBar.shown) {
globalScene.abilityBar.resetAutoHideTimer();
}
2023-03-28 14:54:52 -04:00
}
end() {
globalScene.shiftPhase();
2023-03-28 14:54:52 -04:00
}
}