aboutsummaryrefslogtreecommitdiff
path: root/frontend/cmd/help.cpp
blob: e4425be523d5a8b189c1679525212fd781008fba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include "backend/print.h"

#include "../GameController.h"

using namespace std;

FollowupAction GameController::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;
}