aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/launcher/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/launcher/mod.rs')
-rw-r--r--src/launcher/mod.rs19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/launcher/mod.rs b/src/launcher/mod.rs
deleted file mode 100644
index 0359d3e..0000000
--- a/src/launcher/mod.rs
+++ /dev/null
@@ -1,19 +0,0 @@
-pub mod config;
-pub mod launcher;
-
-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();
-} \ No newline at end of file