/*
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(star_enttype),
color(1,1,1,1)
{
radius = 48;
}
Star::~Star()
{
}
} // namespace game