aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src-tauri/src/launcher/launcher.rs
diff options
context:
space:
mode:
authorHsiangNianian <i@jyunko.cn>2026-01-14 10:33:45 +0800
committerHsiangNianian <i@jyunko.cn>2026-01-14 10:33:45 +0800
commite274b51b98e047d9a9dab8fa2e5f6df63f0f3fc8 (patch)
treef218db74b2d87364395e1f6873334d1bc4219f6d /src-tauri/src/launcher/launcher.rs
parent6d04672b3d293b6350fb4cf4710babbe5583dbc5 (diff)
downloadDropOut-e274b51b98e047d9a9dab8fa2e5f6df63f0f3fc8.tar.gz
DropOut-e274b51b98e047d9a9dab8fa2e5f6df63f0f3fc8.zip
refactor: remove launcher and config modules to streamline codebase
Diffstat (limited to 'src-tauri/src/launcher/launcher.rs')
-rw-r--r--src-tauri/src/launcher/launcher.rs17
1 files changed, 0 insertions, 17 deletions
diff --git a/src-tauri/src/launcher/launcher.rs b/src-tauri/src/launcher/launcher.rs
deleted file mode 100644
index 7b671c9..0000000
--- a/src-tauri/src/launcher/launcher.rs
+++ /dev/null
@@ -1,17 +0,0 @@
-pub struct Launcher {
- pub config: crate::launcher::config::Config,
-}
-
-impl Launcher {
- pub fn new(config: crate::launcher::config::Config) -> Self {
- Launcher { config }
- }
-
- pub fn launch(&self) {
- println!("启动游戏,用户名: {}", self.config.username);
- println!(
- "分辨率: {}x{}",
- self.config.resolution.0, self.config.resolution.1
- );
- }
-}