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