blob: 7a020a3146d82bc245a40e8bfb0a522dda0edbd8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include "backend/print.h"
#include "../Player.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;
}
|