diff options
| author | 2026-01-13 17:59:14 +0800 | |
|---|---|---|
| committer | 2026-01-13 17:59:14 +0800 | |
| commit | 293f7a73095b5210a812725172041bad531484fe (patch) | |
| tree | c2479d439265e6b95a8324ae70c0e76d72f6b6c2 /src-tauri/src/launcher/mod.rs | |
| parent | 50f4725c657c6583452d9c85f9b934c3cf2a0f70 (diff) | |
| download | DropOut-293f7a73095b5210a812725172041bad531484fe.tar.gz DropOut-293f7a73095b5210a812725172041bad531484fe.zip | |
chore: translate comments
Diffstat (limited to 'src-tauri/src/launcher/mod.rs')
| -rw-r--r-- | src-tauri/src/launcher/mod.rs | 7 |
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(); } |