#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; }