feat: initial PSG Launcher scaffold

This commit is contained in:
2026-05-27 09:01:09 +08:00
commit 2c9b591c52
110 changed files with 11150 additions and 0 deletions

6
src-tauri/src/main.rs Normal file
View File

@@ -0,0 +1,6 @@
// Prevents a console window from appearing on Windows in release builds.
#![cfg_attr(not(debug_assertions), windows_subsystem = "windows")]
fn main() {
psg_launcher_lib::run()
}