KlassischeKeplerKriege/game/state/ship.hpp

14 lines
235 B
C++

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