mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2024-12-03 12:16:22 +00:00
13 lines
384 B
TypeScript
13 lines
384 B
TypeScript
import BattleScene from "../battle-scene";
|
|
import AbstractOptionSelectUiHandler from "./abstact-option-select-ui-handler";
|
|
import { Mode } from "./ui";
|
|
|
|
export default class OptionSelectUiHandler extends AbstractOptionSelectUiHandler {
|
|
constructor(scene: BattleScene, mode: Mode = Mode.OPTION_SELECT) {
|
|
super(scene, mode);
|
|
}
|
|
|
|
getWindowWidth(): integer {
|
|
return 64;
|
|
}
|
|
} |