aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src-tauri/src/launcher/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src-tauri/src/launcher/mod.rs')
-rw-r--r--src-tauri/src/launcher/mod.rs7
1 files changed, 0 insertions, 7 deletions
diff --git a/src-tauri/src/launcher/mod.rs b/src-tauri/src/launcher/mod.rs
index 100de01..d260703 100644
--- a/src-tauri/src/launcher/mod.rs
+++ b/src-tauri/src/launcher/mod.rs
@@ -5,15 +5,8 @@ pub use config::Config;
pub use launcher::Launcher;
pub fn start() {
- // 启动器的代码
println!("启动器启动中...");
-
- // 创建配置
let config = Config::new("玩家", (1920, 1080));
-
- // 创建启动器
let launcher = Launcher::new(config);
-
- // 启动游戏
launcher.launch();
}