summaryrefslogtreecommitdiffstats
path: root/labb5/src/bogglemain.h
blob: 78b7f255d439b83093cf465025fd8159ece031e2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
 * TDDD86 Boggle
 * This file declares required function prototypes that are defined in
 * our provided bogglemain.cpp and your boggleplay.cpp that you will write.
 * See the respective .cpp files for implementation comments for each function.
 * Please do not modify this provided file.
 */

#ifndef _bogglemain_h
#define _bogglemain_h

#include "Boggle.h"
#include <string>
using namespace std;

void intro();
void playOneGame(Boggle& boggle);
bool yesOrNo(string prompt);
void clearConsole();

#endif