Adjust some output
This commit is contained in:
parent
71d0084908
commit
f4109e7b36
1 changed files with 5 additions and 2 deletions
|
@ -46,6 +46,8 @@ int main(int argc, char* argv[])
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
std::cout<<"Launching TTRTS!"<<std::endl;
|
||||||
|
|
||||||
std::string gameDescriptor;
|
std::string gameDescriptor;
|
||||||
|
|
||||||
// Reserve the string needed up front
|
// Reserve the string needed up front
|
||||||
|
@ -129,12 +131,13 @@ int main(int argc, char* argv[])
|
||||||
}
|
}
|
||||||
|
|
||||||
// Simulate turn
|
// Simulate turn
|
||||||
std::cerr<<"Simulating next turn"<<std::endl;
|
std::cout<<"Simulating this turn!"<<std::endl;
|
||||||
if ( game.SimulateToNextTurn() )
|
if ( game.SimulateToNextTurn() )
|
||||||
{
|
{
|
||||||
std::cerr << "Error: Failed to simulate next Turn "<<game.GetTurn()<<std::endl;
|
std::cerr << "Error: Failed to simulate for turn "<<game.GetTurn()<<std::endl;
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Print the winner!
|
// Print the winner!
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue