mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2024-12-04 12:46:10 +00:00
12 lines
336 B
TypeScript
12 lines
336 B
TypeScript
|
import BattleScene from "../battle-scene";
|
||
|
import { Mode } from "./ui";
|
||
|
import UiHandler from "./uiHandler";
|
||
|
|
||
|
export default abstract class AwaitableUiHandler extends UiHandler {
|
||
|
protected awaitingActionInput: boolean;
|
||
|
protected onActionInput: Function;
|
||
|
|
||
|
constructor(scene: BattleScene, mode: Mode) {
|
||
|
super(scene, mode);
|
||
|
}
|
||
|
}
|