aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src-tauri/src/launcher/launcher.rs
diff options
context:
space:
mode:
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
- );
- }
-}