summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorJustin Worthe <justin.worthe@gmail.com>2015-06-12 16:30:29 +0200
committerJustin Worthe <justin.worthe@gmail.com>2015-06-12 16:30:29 +0200
commit63ab384440a6e6813196b914813914bc43674fa8 (patch)
tree7b62e33239b477b058991160d48edbaf2c10ac9b /include
parent72eaaeb60916e736de6c1aaa3d1047663bce19d9 (diff)
Added new tests
Diffstat (limited to 'include')
-rw-r--r--include/game_state.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/game_state.h b/include/game_state.h
index 7ccef54..905bbc9 100644
--- a/include/game_state.h
+++ b/include/game_state.h
@@ -16,6 +16,10 @@ public:
void logState();
const std::vector<Alien>& aliens() const { return _aliens; }
+ const std::vector<EnemyBullet>& bullets() const { return _bullets; }
+ const std::vector<PlayerMissile>& missiles() const { return _missiles; }
+ const std::vector<Shield>& shields() const { return _shields; }
+ const std::vector<Spaceship>& spaceships() const { return _spaceships; }
private:
std::vector<Alien> _aliens;