From 3211a20c9c936b6803aef714d298ecf7e343050d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maximilian=20Ke=C3=9Fler?= Date: Wed, 6 Sep 2023 12:05:29 +0200 Subject: [PATCH] better usage printing in cli --- src/main.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index 838137e..054261d 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -41,7 +41,9 @@ namespace Hanabi { void print_usage(const char* program_name) { std::cout << "Usage: " << program_name << "(GAME_ID | GAME_FILE) TURN" << std::endl; - std::cout << " where GAME_ID is an id from hanab.live and GAME_FILE is a path to a file describing the game in hanab.live json format"; + std::cout << " GAME_ID A game id from hanab.live" << std::endl; + std::cout << " GAME_FILE A path to a file describing the game in hanab.live json format." << std::endl; + std::cout << " TURN Turn number of state to analyze. Turn 1 means no actions have been taken." << std::endl; } }