From b75a02c8f5c616eff6f21197c3e13056eefcb873 Mon Sep 17 00:00:00 2001 From: salaaad2 Date: Tue, 4 Jan 2022 23:52:04 +0100 Subject: add fury, bang sound, colors and more --- src/gameplay.hpp | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'src/gameplay.hpp') diff --git a/src/gameplay.hpp b/src/gameplay.hpp index ccedb0e..168a83a 100644 --- a/src/gameplay.hpp +++ b/src/gameplay.hpp @@ -15,14 +15,17 @@ #include #include + +#define COOLPURPLE CLITERAL(Color){ 170, 153, 255, 255 } // cool Purple +//rgb(170,153,255) class Game { - int nEnemies; + int nEnemies; // number of enemies on given level std::vector * enemies; Entity * player; - std::string next; + std::string next; // next level public: Game(std::string const & path); @@ -34,7 +37,7 @@ class Game { int getKeys() const ; int shoot() const ; - std::string const & getNext() const ; + std::string const & getNext() const ; // returns next level's string }; #endif // GAMEPLAY_H_ -- cgit v1.2.3