#include "../Player.h" #include "../print.h" FollowupAction Player::cmd_cheat(Argv argv) { this->cheating = !this->cheating; lprtf("Cheats staan nu %s.\n", this->cheating ? "aan" : "uit"); return FollowupAction::NONE; }