From 6dfa3fb34fb0a2ea028fd46e77296e26b092fb99 Mon Sep 17 00:00:00 2001 From: Loek Le Blansch Date: Wed, 30 Oct 2024 14:48:02 +0100 Subject: use string instead of argument vector for commands --- frontend/cmd/hit.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'frontend/cmd/hit.cpp') diff --git a/frontend/cmd/hit.cpp b/frontend/cmd/hit.cpp index 17f9099..86d596a 100644 --- a/frontend/cmd/hit.cpp +++ b/frontend/cmd/hit.cpp @@ -1,6 +1,8 @@ #include "../Player.h" -FollowupAction Player::cmd_hit(Argv argv) { +using namespace std; + +FollowupAction Player::cmd_hit(string & argv) { // TODO return FollowupAction::UPDATE; } -- cgit v1.2.3