feat: implement osu! installation path input in Launch.svelte, and enhance loading animation cleanup

This commit is contained in:
2025-07-01 16:30:31 +02:00
parent afbb4df906
commit 7df448eea8
4 changed files with 64 additions and 56 deletions

View File

@@ -0,0 +1,7 @@
import { writable } from 'svelte/store';
import { Config } from './config';
export const userAuth = writable<Config>(new Config(true));
export const username = writable<string>("");
export const password = writable<string>("")