#pragma once #include "object.hpp" namespace game { class Ship : public Object { public: Ship(const glm::vec2 &pos, float r) : Object(pos, r) { } }; }