Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
blob: 6aa82ace8fe3d901f37863f7851346cb87652bc2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* star.h
   This file is part of the Osirion project and is distributed under 
   the terms and conditions of the GNU General Public License version 2 
*/

#include "star.h"

Star::Star() : 
	location(0,0,0), 
	color(1,1,1,1)
{
	radius = 48;
}

Star::~Star()
{
}