mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-10-21 20:45:52 +02:00
* Move enum BattleStyle into separated file * Move enum BattleStyle into separated file * Move enum BattleStyle into separated file * Update battle-style.ts * Replace shift into switch
10 lines
292 B
TypeScript
10 lines
292 B
TypeScript
/**
|
|
* Determines the selected battle style.
|
|
* - 'Switch' - The option to switch the active pokemon at the start of a battle will be displayed.
|
|
* - 'Set' - The option to switch the active pokemon at the start of a battle will not display.
|
|
*/
|
|
export enum BattleStyle {
|
|
SWITCH,
|
|
SET
|
|
}
|