mirror of
https://github.com/pagefaultgames/pokerogue.git
synced 2025-11-20 18:21:25 +01:00
12 lines
147 B
TypeScript
12 lines
147 B
TypeScript
/**
|
|
* enum for the game data types
|
|
*/
|
|
export enum GameDataType {
|
|
SYSTEM,
|
|
SESSION,
|
|
SETTINGS,
|
|
TUTORIALS,
|
|
SEEN_DIALOGUES,
|
|
RUN_HISTORY
|
|
}
|