#ifndef PLAYER_HPP #define PLAYER_HPP #include #include #include #include class Player { public: Player(float size, sf::Color color); void update(double dt, sf::RenderWindow &window, const sf::View &view); void render(sf::RenderWindow &window); private: sf::CircleShape circleShape; }; #endif // PLAYER_HPP