feat: add osu skin retrieval functionality and integrate into loading and setup processes

This commit is contained in:
2025-07-04 10:16:51 +02:00
parent 8c5e7ca6f2
commit 41608afae2
6 changed files with 53 additions and 11 deletions

View File

@@ -22,6 +22,8 @@ export const skins = writable<number | undefined>(undefined);
export const osuStream = writable<string | undefined>(undefined);
export const osuBuild = writable<string | undefined>(undefined);
export const currentSkin = writable<string>("");
let updateValues = true;
launching.subscribe((val) => (updateValues = !val));