Project 3: Connect 4  Version 4
1-2-3-4 in a row
 All Classes Functions Variables
Game.h
1 #ifndef GAME_H
2 #define GAME_H
3 
4 #include "Board.h"
5 #include <string>
6 #include <iostream>
7 
8 using std::istream;
9 using std::ostream;
10 using std::string;
15 class Game
16 {
17 private:
21  string player1;
25  string player2;
30 public:
34  Game();
38  void playGame( istream &player1, istream &player2, ostream& out );
39 };
40 
41 #endif