From 387cff36adb6664985793c88020a97ea05cd2488 Mon Sep 17 00:00:00 2001 From: Persson-dev Date: Wed, 16 Feb 2022 16:32:05 +0100 Subject: [PATCH] style: more space --- include/game/Player.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/game/Player.h b/include/game/Player.h index a01fa4b..ee6fac1 100644 --- a/include/game/Player.h +++ b/include/game/Player.h @@ -18,8 +18,9 @@ private: PlayerID m_ID; std::uint8_t m_GoldPerSecond; - + public: + Player(std::uint8_t id = 0) : m_TeamColor(game::TeamColor::None), m_Gold(0), m_Exp(0), m_ID(id), m_GoldPerSecond(5) {} const std::string& getName() const { return m_Name; }