14 lines
1.1 KiB
C
14 lines
1.1 KiB
C
OPTION(debug, "debug", 'd', "Enable Debug Logging")
|
|
OPTION(copy_sdk, "copy-sdk", -2, "Extract Modding SDK And Exit")
|
|
OPTION(disable_logger, "disable-logger", -1, "Disable Logger (And Crash Report Dialog)")
|
|
OPTION(use_default, "default", -3, "Skip Client-Mode Configuration Dialogs")
|
|
OPTION(no_cache, "no-cache", -4, "Disable Client-Mode Configuration Cache")
|
|
OPTION(wipe_cache, "wipe-cache", -5, "Wipe Cached Client-Mode Configuration And Exit")
|
|
OPTION(print_available_feature_flags, "print-available-feature-flags", -6, "Print Available Client-Mode Feature Flags")
|
|
OPTION(benchmark, "benchmark", -7, "Run Client-Mode Benchmark")
|
|
OPTION(only_generate, "only-generate", -8, "Generate World And Exit (Server-Mode Only)")
|
|
OPTION(force_headless, "force-headless", -9, "Force Disable Game Rendering")
|
|
OPTION(force_non_headless, "force-non-headless", -10, "Force Enable Game Rendering")
|
|
OPTION(server_mode, "server", -11, "Run In Server-Mode")
|
|
OPTION(skip_pagesize_check, "skip-pagesize-check", -12, "Skip Page-Size Check (Not Recommended)")
|
|
OPTION(run_update, "update", -13, "Run Updater (If Available)") |