From 37f78c20c424817ee72f0ee29526c839e28852eb Mon Sep 17 00:00:00 2001 From: Jorens Shtekels Date: Tue, 12 Mar 2024 22:45:51 +0200 Subject: [PATCH] fix: Player constructor --- src/prep/prep.hh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/prep/prep.hh b/src/prep/prep.hh index 0d53e6f..d99d6fd 100644 --- a/src/prep/prep.hh +++ b/src/prep/prep.hh @@ -1,7 +1,6 @@ #ifndef PREP_H #define PREP_H -#include #include #include #include @@ -55,7 +54,7 @@ struct Player { Role role; PlayerStatus playerStatus; - Player(uint32_t id, std : string username, Role role, PlayerStatus playerStatus); + Player(uint32_t id, std::string username, Role role, PlayerStatus playerStatus); bool operator==(const Player &other) const; };