/* game/star.cc This file is part of the Osirion project and is distributed under the terms of the GNU General Public License version 2. */ #include "game/shared.h" #include "game/star.h" namespace game { Star::Star() : core::Entity(core::entity::Static & core::entity::Solid) { base_shape = core::entity::Sphere; // a star is a sphere base_color = math::Color(1,1,1,1); // white base_radius = 48; // 48 game units } Star::~Star() { } } // namespace game