aboutsummaryrefslogtreecommitdiff
path: root/client/system/cli.gd
diff options
context:
space:
mode:
Diffstat (limited to 'client/system/cli.gd')
-rw-r--r--client/system/cli.gd4
1 files changed, 4 insertions, 0 deletions
diff --git a/client/system/cli.gd b/client/system/cli.gd
index 7a312127..d503d536 100644
--- a/client/system/cli.gd
+++ b/client/system/cli.gd
@@ -29,6 +29,10 @@ static var OPTIONS := [
Option.new("h", "help", Mode.FLAG, "Show help"),
Option.new("s", "setting", Mode.MULTI_OPTION, "Per-launch setting override"),
Option.new("c", "join-command", Mode.OPTION, "Message to send right after initial joining"),
+ Option.new(null, "render-items", Mode.OPTION, "Render items from text file to images"),
+ Option.new(null, "render-tiles", Mode.OPTION, "Render tiles from text file to images"),
+ Option.new(null, "render-resolution", Mode.OPTION, "Resolution for rendering items or tiles"),
+ Option.new(null, "render-output", Mode.OPTION, "Output directory for rendering items or tiles"),
Option.new(null, "connect_address", Mode.POSITIONAL, "Connect to a server directly without menu interaction")
]