feat: prestige system

This commit is contained in:
Face 2025-06-14 21:51:26 +06:00
parent 08adc11dd0
commit ec6426781d
17 changed files with 2683 additions and 30 deletions

View file

@ -16,6 +16,8 @@ export type User = {
volumeMaster: number;
volumeMuted: boolean;
prestigeLevel: number;
} | null;
export const USER_DATA = writable<User>(undefined);