allow loading client args from config

This commit is contained in:
2023-09-14 10:32:03 +02:00
parent a1004405ca
commit d47ebbcb28
3 changed files with 8 additions and 4 deletions

View File

@@ -21,6 +21,7 @@ pub struct Config {
pub download_bonus_content: bool,
pub ask_bonus_content: bool,
pub force_update: bool,
pub args: String,
}
impl Default for Config {
@@ -31,6 +32,7 @@ impl Default for Config {
download_bonus_content: false,
ask_bonus_content: true,
force_update: false,
args: String::from(""),
}
}
}