Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/star.cc')
-rw-r--r--src/game/star.cc17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/game/star.cc b/src/game/star.cc
new file mode 100644
index 0000000..6aa82ac
--- /dev/null
+++ b/src/game/star.cc
@@ -0,0 +1,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()
+{
+}