nsnake
Classic snake game for the terminal
Toggle main menu visibility
Loading...
Searching...
No Matches
src
Interface
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
Layout
Interface for how the things are shown on the screen.
Definition
Layout.hpp:16
Generated on
for nsnake by
1.17.0