-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhelp.h
34 lines (25 loc) · 765 Bytes
/
help.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/*
Author: Jared Thomas
Date: Monday, January 23, 2023
This module provides the help command handler.
*/
#ifndef HELP_H
#define HELP_H
#include <vector>
#include "Tower.h"
#include "TowerDrawer.h"
/*
Clears the screen and starts the help texts which come in two screens.
The passed in towers will be shown as a demonstration in the explanation.
*/
void showHelpText(const std::vector<Tower>& towers, const TowerDrawer& towerDrawer);
/*
Shows part 1/2 of the help text which is the game objective, rules, and
inputs explanation
*/
void showExpanation(const std::vector<Tower>& towers, const TowerDrawer& towerDrawer);
/*
Shows part 2/2 of the help text which is the list of game commands
*/
void showCommandsHelp();
#endif