-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.cpp
More file actions
36 lines (28 loc) · 670 Bytes
/
test.cpp
File metadata and controls
36 lines (28 loc) · 670 Bytes
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
35
36
#include <iostream>
// #include "math.cpp"
#include "game.cpp"
using namespace std;
// using namespace algorithmLib;
int main()
{
// const int maxTest = 6;
// string data[maxTest] = {"Euinn", "Argenti", "Magi", "August", "Larkhom", "August"};
// insertionSort(data, maxTest);
// for (int i = 0; i < maxTest; i++)
// {
// if (data[i].empty())
// {
// break;
// }
// cout<<data[i];
// }
// cout<<endl;
gameBoard activeGame;
while (activeGame.isRunning())
{
activeGame.startGame();
activeGame.startTutorial();
activeGame.endGame();
}
return 0;
}