feat(achievements): black fade in and out from home and settings screen
This commit is contained in:
@@ -1,8 +1,25 @@
|
||||
export type SettingsButton =
|
||||
| "options"
|
||||
| "optionsLanguage"
|
||||
| "optionsGbaMode"
|
||||
| "optionsStartUp"
|
||||
| "clock"
|
||||
| "clockAlarm"
|
||||
| "clockTime"
|
||||
| "clockDate"
|
||||
| "user"
|
||||
| "userBirthday"
|
||||
| "userUserName"
|
||||
| "userMessage"
|
||||
| "userColor"
|
||||
| "touchScreen";
|
||||
|
||||
export const useSettingsStore = defineStore("settings", {
|
||||
state: () => ({
|
||||
currentMenu: null as SettingsMenu | null,
|
||||
currentSubMenu: null as SettingsSubMenu | null,
|
||||
menuExpanded: false,
|
||||
selectedButton: "options" as SettingsButton,
|
||||
}),
|
||||
|
||||
actions: {
|
||||
|
||||
Reference in New Issue
Block a user