mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-06-20 16:42:45 +02:00
9 lines
114 B
TypeScript
9 lines
114 B
TypeScript
/**
|
|
* An enum for generation tooltip
|
|
*/
|
|
export enum GenerationTooltip {
|
|
NEVER,
|
|
DURING_CHALLENGE,
|
|
ALWAYS
|
|
}
|