nsnake
Classic snake game for the terminal
LayoutFirstTime.cpp
1 #include <Interface/LayoutFirstTime.hpp>
2 #include <Misc/Utils.hpp>
3 #include <Config/Globals.hpp>
4 
5 LayoutFirstTime::LayoutFirstTime(int width, int height):
6  Layout(width, height)
7 {
8  this->windowsInit();
9 }
10 LayoutFirstTime::~LayoutFirstTime()
11 {
12  this->windowsExit();
13 }
14 void LayoutFirstTime::windowsInit()
15 {
16  Layout::windowsInit();
17 }
18 void LayoutFirstTime::windowsExit()
19 {
20  clear();
21 
22  Layout::windowsExit();
23 }
24 void LayoutFirstTime::draw()
25 {
26 
27 }
28 
Interface for how the things are shown on the screen.
Definition: Layout.hpp:15