A C++ implementation of Wheel of Fortune using four players
- The program is composed of three main classes:
- Game
- Players
- Display
- The Game class orchistrates how the game is to be played
- The Players class groups player objects together and makes operations on all or individual players easier
- THe Display class is responsible for ALL output to the console (objects like cout are not to be used only within the display class, nowhere else in the code)