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