aboutsummaryrefslogtreecommitdiff
path: root/frontend/cmd/wait.cpp
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2024-11-01 10:18:22 +0100
committerLoek Le Blansch <loek@pipeframe.xyz>2024-11-01 10:18:22 +0100
commit798948dbe6f012e194f053c4e862cf697f30b793 (patch)
tree32c71420d1188f98cfb41b6f0d9536c5fa4bf5a7 /frontend/cmd/wait.cpp
parentd7012045bb61f117fb7b9c51ddd03e4c54f25fe6 (diff)
more WIP (move some Player things to backend)
Diffstat (limited to 'frontend/cmd/wait.cpp')
-rw-r--r--frontend/cmd/wait.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/frontend/cmd/wait.cpp b/frontend/cmd/wait.cpp
index 49cb7db..0911d72 100644
--- a/frontend/cmd/wait.cpp
+++ b/frontend/cmd/wait.cpp
@@ -1,8 +1,8 @@
-#include "../Player.h"
+#include "../GameController.h"
using namespace std;
-FollowupAction Player::cmd_wait(string &) {
- return FollowupAction::NONE;
+FollowupAction GameController::cmd_wait(string &) {
+ return FollowupAction::UPDATE;
}