Skip to content
Permalink
master
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 <string>
#include "Classes_45.cpp"
#include "Nathan Player/GameStart.cpp"
#include "text_recog.cpp"
using namespace std;
Player myPlayer;
Inventory myInvent;
int main(){
int response;
string user_comm;
gamestart(myPlayer, myInvent);
do{
getline(cin,user_comm);
response = text_recog(user_comm,myPlayer,myInvent);
}while (response != 1);
cout << "Thank you for playing the game!" <<endl;
cout << "Press Enter Key to Continue";
cin.get();
return 0;
}