blob: aeed5f41140316cfd7797673dd497b83d9bcd877 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#include "../Player.h"
#include "../print.h"
using namespace std;
FollowupAction Player::cmd_cheat(string &) {
this->cheating = !this->cheating;
lprtf("Cheats staan nu %s.\n", this->cheating ? "aan" : "uit");
return FollowupAction::NONE;
}
|