12 lines
193 B
C++
12 lines
193 B
C++
#pragma once
|
|
|
|
#include "object.hpp"
|
|
|
|
namespace game {
|
|
class Planet : public Object {
|
|
public:
|
|
Planet(const glm::vec2 &pos, float r) : Object(pos, r)
|
|
{
|
|
}
|
|
};
|
|
}
|