mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-01-05 23:47:54 +00:00
12 lines
305 B
TypeScript
12 lines
305 B
TypeScript
|
/**
|
||
|
* Determines exp notification style.
|
||
|
* - Default - the normal exp gain display, nothing changed
|
||
|
* - Only level up - we display the level up in the small frame instead of a message
|
||
|
* - Skip - no level up frame nor message
|
||
|
*/
|
||
|
export enum ExpNotification {
|
||
|
DEFAULT,
|
||
|
ONLY_LEVEL_UP,
|
||
|
SKIP
|
||
|
}
|