mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2024-12-12 00:26:15 +00:00
bb1dde5b0c
* Move enum ExpNotification into separated file * Update phases.ts * Change type of this.scene.expParty into enum
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
|
|
}
|