mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-04-10 03:42:37 +01:00
* move PlayerGender enum into src/data/enums/player-gender.ts this is necessary to avoid circular dependencies which did crash tests in the past (in PRs) * Update settings.ts * Update game-data.ts * Update summary-ui-handler.ts * Update ui.ts * move Passive & GameDataType enums into own files
8 lines
82 B
TypeScript
8 lines
82 B
TypeScript
/**
|
|
* enum for passive
|
|
*/
|
|
export enum Passive {
|
|
UNLOCKED = 1,
|
|
ENABLED = 2
|
|
}
|