summaryrefslogtreecommitdiffstatshomepage
path: root/src-tauri/src/launcher/mod.rs
blob: d260703a55d7cc2c597aacc2d399474fcfac1794 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
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();
}