#include "backend/print.h" #include "../GameController.h" using namespace std; FollowupAction GameController::cmd_cheat(string &) { this->player.cheating = !this->player.cheating; lprtf("Cheats staan nu %s.\n", this->player.cheating ? "aan" : "uit"); return FollowupAction::NONE; }