#ifndef PLAYER_H
#define PLAYER_H

#include <iostream>
#include <string>
using namespace std;

class Player
{
public:
	Player();
	char PickLetter();
	void SetTurn(bool Turn);
	void SetName(string Name);
	void UpdateDollarAmount(int DollarAmount);
	bool GetTurn();
	int GetDollarAmount();
	string GetName();
private:
	bool Turn;
	int DollarAmount;
	string Name;
};

#endif