diff options
Diffstat (limited to 'frontend/cmd/cheat.cpp')
-rw-r--r-- | frontend/cmd/cheat.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/frontend/cmd/cheat.cpp b/frontend/cmd/cheat.cpp index 6f1c163..aeed5f4 100644 --- a/frontend/cmd/cheat.cpp +++ b/frontend/cmd/cheat.cpp @@ -1,7 +1,9 @@ #include "../Player.h" #include "../print.h" -FollowupAction Player::cmd_cheat(Argv argv) { +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; |