mirror of
https://github.com/ALEZ-DEV/Babylonia-terminal.git
synced 2025-12-18 02:18:51 +00:00
10 lines
231 B
Rust
10 lines
231 B
Rust
use clap::Parser;
|
|
|
|
#[derive(Parser, Debug)]
|
|
#[command(author, version, about, long_about = None)]
|
|
pub struct Args {
|
|
/// Pass launch options to tinker the behavior of the game
|
|
#[arg(long)]
|
|
pub options: Option<String>,
|
|
}
|