mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-10-20 03:55:51 +02:00
* moving enums * import updates * fix tsconfig paths importing (#2184) * reverse index.ts addition --------- Co-authored-by: Devin Korb <meepdarknessmeep@gmail.com>
8 lines
82 B
TypeScript
8 lines
82 B
TypeScript
/**
|
|
* enum for passive
|
|
*/
|
|
export enum Passive {
|
|
UNLOCKED = 1,
|
|
ENABLED = 2
|
|
}
|