Skip to content
Permalink
main
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
#include <iostream>
#include "menu2.h"
#include "maingame.h"
using namespace std;
int main()
{
// THE MAIN HAS BEEN MOVED TO MAINGAME.H
menu();
int n=0; // THIS IS TEMPORARY, REPLACE THIS WITH THE TURN COUNTER
while (n<10)
{
std::cout << "day: " << n << std::endl; // TEMP: SAY WHAT DAY IT IS
main_game();
n = n + 1; // TEMP: ADD ONE TO COUNTER
}
return 0;
}