#include "../print.h" #include "../Player.h" FollowupAction Player::cmd_help(Argv argv) { lprtf("De beschikbare commando's zijn: "); bool first = true; for (auto & [ key, _ ] : this->cmds) { if (!first) lprtf(", "); lprtf("%s", key.c_str()); first = false; } lprtf(".\n"); return FollowupAction::NONE; }