This commit is contained in:
ALEZ-DEV 2024-07-17 21:03:38 +02:00
parent 2fe4496040
commit f87289be54
2 changed files with 2 additions and 1 deletions

View File

@ -3,7 +3,7 @@ use clap::Parser;
#[derive(Parser, Debug)]
#[command(author, version, about, long_about = None)]
pub struct Args {
/// Pass launch options to tink the behavior of the game
/// Pass launch options to tinker the behavior of the game
#[arg(long)]
pub options: Option<String>,
}

View File

@ -192,6 +192,7 @@ async fn main() {
GameState::get_game_dir()
.await
.expect("Failed to start game, the game directory was not found"),
args.options,
)
.await;
}