blob: b655a4543fa575cb21469aa756dd61d5314c206c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#include "backend/print.h"
#include "../Player.h"
using namespace std;
FollowupAction Player::cmd_help(string &) {
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;
}
|