KlassischeKeplerKriege/game/state/ship.hpp

15 lines
235 B
C++
Raw Normal View History

#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;
};
}