diff options
Diffstat (limited to 'frontend/cmd/help.cpp')
-rw-r--r-- | frontend/cmd/help.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/frontend/cmd/help.cpp b/frontend/cmd/help.cpp index 1ae1fde..e614f28 100644 --- a/frontend/cmd/help.cpp +++ b/frontend/cmd/help.cpp @@ -1,7 +1,9 @@ #include "../print.h" #include "../Player.h" -FollowupAction Player::cmd_help(Argv argv) { +using namespace std; + +FollowupAction Player::cmd_help(string &) { lprtf("De beschikbare commando's zijn: "); bool first = true; for (auto & [ key, _ ] : this->cmds) { |