#ifndef HOST_H
#define HOST_H

#include "Player.h"

const int SPIN_WHEEL = 1;
const int BUY_VOWEL = 2;
const int DISPLAY_BOARD = 3;
const int DISPLAY_USED_BOARD = 4;
const int SOLVE_PUZZLE = 5;
const int QUIT = 6;

class Host
{
public:
	int TakeTurn(Player P);
};

#endif