From 618501b6fae62fa2d5db922ec8abf94120e5e99c Mon Sep 17 00:00:00 2001 From: Justin Worthe Date: Wed, 3 Jun 2015 07:50:05 +0200 Subject: Added gamestate object --- include/game_state.h | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 include/game_state.h (limited to 'include/game_state.h') diff --git a/include/game_state.h b/include/game_state.h new file mode 100644 index 0000000..abb2efa --- /dev/null +++ b/include/game_state.h @@ -0,0 +1,21 @@ +#pragma once + +#include "alien.h" +#include "enemy_bullet.h" +#include "player_missile.h" +#include "shield.h" +#include "spaceship.h" +#include +#include + +class GameState +{ +public: + GameState(const std::istream& mapFile){} +private: + std::vector aliens; + std::vector bullets; + std::vector missiles; + std::vector shields; + std::vector spaceships; +}; -- cgit v1.2.3