nsnake
Classic snake game for the terminal
WindowGameHelp.hpp
1 #ifndef WINDOWGAMEHELP_H_DEFINED
2 #define WINDOWGAMEHELP_H_DEFINED
3 
4 #include <Interface/Window.hpp>
5 
6 #include <vector>
7 
12 {
13 public:
15  virtual ~WindowGameHelp() {};
16 
18  void run();
19 
20 private:
21  Window* main;
22  std::vector<Window*> windows;
23 };
24 
25 #endif //WINDOWGAMEHELP_H_DEFINED
26 
A segment of the terminal screen (2D char matrix).
Definition: Window.hpp:16
Specific Window that shows Help and other info during Game.
void run()
Updates and draws all tabs.