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/game.cc')
-rw-r--r--src/game/game.cc5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/game/game.cc b/src/game/game.cc
index f8b8596..8a50e33 100644
--- a/src/game/game.cc
+++ b/src/game/game.cc
@@ -97,10 +97,13 @@ bool Game::init()
con_print << " " << sectors[n]->label << " " << sectors[n]->name << std::endl;
*/
- ship = new Ship();
star = new Star();
star->location = Vector3f(256.0f, 0.0f, 256.0f);
+ star->label = "star: Sabishi Hoshi";
+
+ ship = new Ship();
ship->location = Vector3f(0,0,0);
+ ship->label = "ship: Micron Vector";
return true;
}