diff options
Diffstat (limited to 'src/game/game.cc')
| -rw-r--r-- | src/game/game.cc | 31 | 
1 files changed, 31 insertions, 0 deletions
| diff --git a/src/game/game.cc b/src/game/game.cc new file mode 100644 index 0000000..dfa5fe5 --- /dev/null +++ b/src/game/game.cc @@ -0,0 +1,31 @@ +/* 	game.cc +	This file is part of the Osirion project +*/ + +// project headers +#include "ship.h" +#include "star.h" + +namespace game { + +Ship ship; +Star star; +bool initialized = false; + +void init()  +{ +	star.location = Vector3f(256.0f, 0.0f, 256.0f); +	initialized = true; +} + +void shutdown() +{ +	initialized = false; +} + +void update(float elapsed)  +{ +	ship.update(elapsed); +} +	 +}; // namespace game | 
