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.rs7
1 files changed, 5 insertions, 2 deletions
diff --git a/src-tauri/src/launcher/launcher.rs b/src-tauri/src/launcher/launcher.rs
index 5ccf443..22a8881 100644
--- a/src-tauri/src/launcher/launcher.rs
+++ b/src-tauri/src/launcher/launcher.rs
@@ -10,6 +10,9 @@ impl Launcher {
pub fn launch(&self) {
// 启动游戏的逻辑
println!("启动游戏,用户名: {}", self.config.username);
- println!("分辨率: {}x{}", self.config.resolution.0, self.config.resolution.1);
+ println!(
+ "分辨率: {}x{}",
+ self.config.resolution.0, self.config.resolution.1
+ );
}
-} \ No newline at end of file
+}