Skip to content

Commit

Permalink
Merge pull request #131 from DRincs-Productions/128-rename-_memory_ke…
Browse files Browse the repository at this point in the history
…y___-to-_memory_key___

Refactor storage keys in StorageManager.ts
  • Loading branch information
BlackRam-oss authored Apr 27, 2024
2 parents 2a7fa0b + 0af79f9 commit e720363
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/managers/StorageManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ export default class GameStorageManager {
private constructor() { }
public static get keysSystem() {
return {
CURRENT_DIALOGUE_MEMORY_KEY: "___current_dialogue_memory_key___",
LAST_DIALOGUE_ADDED_IN_STEP_MEMORY_KEY: "___last_dialogue_added_in_step_memory_key___",
CURRENT_MENU_OPTIONS_MEMORY_KEY: "___current_menu_options_memory_key___",
LAST_MENU_OPTIONS_ADDED_IN_STEP_MEMORY_KEY: "___last_menu_options_added_in_step_memory_key___",
CURRENT_DIALOGUE_MEMORY_KEY: "___current_dialogue_memory___",
LAST_DIALOGUE_ADDED_IN_STEP_MEMORY_KEY: "___last_dialogue_added_in_step_memory___",
CURRENT_MENU_OPTIONS_MEMORY_KEY: "___current_menu_options_memory___",
LAST_MENU_OPTIONS_ADDED_IN_STEP_MEMORY_KEY: "___last_menu_options_added_in_step_memory___",
CHARACTER_CATEGORY_KEY: "___character___",
FLAGS_CATEGORY_KEY: "___flags___",
}
Expand Down

0 comments on commit e720363

Please sign in to comment.