#include "Host.h"

int Host::TakeTurn(Player P)
{
	int choice;
	cout << "What would you like to do, " << P.GetName() << "?\t\t\tAmount: $" << P.GetDollarAmount() << endl;
	cout << "\t1.\t Spin the wheel\n"
		<< "\t2.\t See the board\n"
		<< "\t3.\t See the used board\n"
		<< "\t4.\t Quit the game\n";
	cout << "Enter your selection: ";
	cin >> choice;
	return choice;
}