#pragma once #include #include using namespace std; using namespace sf; class Laser { public: Laser(Window& window); RectangleShape& getShape() { return _laser; } void setInitialPosition(Vector2f position); private: RectangleShape _laser; };