blob: c9e1113c34a1655ea6ad49731d009f933bb5848a (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
 | #include "backend/print.h"
#include "../GameController.h"
using namespace std;
void 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");
}
 |