mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-12-24 10:39:15 +01:00
* Allow tera type choice on starter select * Make tera type actually apply in run * Remove logging statement * Add support for alternate forms
20 lines
201 B
TypeScript
20 lines
201 B
TypeScript
export enum Button {
|
|
UP,
|
|
DOWN,
|
|
LEFT,
|
|
RIGHT,
|
|
SUBMIT,
|
|
ACTION,
|
|
CANCEL,
|
|
MENU,
|
|
STATS,
|
|
CYCLE_SHINY,
|
|
CYCLE_FORM,
|
|
CYCLE_GENDER,
|
|
CYCLE_ABILITY,
|
|
CYCLE_NATURE,
|
|
CYCLE_TERA,
|
|
SPEED_UP,
|
|
SLOW_DOWN,
|
|
}
|