#ifndef PLAYER_H #define PLAYER_H #include "Common.h" class Player { DISABLE_COPY_CLASS(Player) private: long score = 0; public: Player(); inline long getScore() const { return score; } /// @param points Number of points to credit this player. If negative player is /// punished inline void increaseScore(int points) { score += points; } }; #endif // PLAYER_H