/* 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/game.h" #include "game/star.h" namespace game { Star::Star() : core::Entity(core::entity::Static & core::entity::Solid) { core_shape = core::entity::Sphere; // a star is a sphere core_color = math::Color(1,1,1,1); // white core_radius = 48; // 48 game units type = star_enttype; } Star::~Star() { } } // namespace game