diff options
Diffstat (limited to 'src/gameplay.hpp')
-rw-r--r-- | src/gameplay.hpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/gameplay.hpp b/src/gameplay.hpp index 7097995..ccedb0e 100644 --- a/src/gameplay.hpp +++ b/src/gameplay.hpp @@ -22,6 +22,8 @@ class Game { Entity * player; + std::string next; + public: Game(std::string const & path); ~Game(); @@ -30,6 +32,9 @@ class Game { void draw() const ; int tick() const ; int getKeys() const ; + int shoot() const ; + + std::string const & getNext() const ; }; #endif // GAMEPLAY_H_ |