#pragma once #define _USE_MATH_DEFINES #include #include #include using namespace std; using namespace sf; class Player { public: Player(Vector2u screenSize); CircleShape& getShape() { return _shape; }; void move(int direction); private: CircleShape _shape; int _screenWidth; };