#ifndef PLAYER_H #define PLAYER_H namespace GameLogic { class Player { public: Player(void); ~Player(void); private: }; } #endif