//hex_board.h #include #include #include #include "testSquare.h" class hex_board{ public: int SIZE; testSquare ** board; hex_board(); hex_board(int largeness); void makeBlankBoard(); void setCoord(int a, int b, occupantType c); void doIt(Move &here,occupantType c); bool directionConnected(int i, int j, occupantType side); //Returns true iff the i,j th hex is connected, vertical //for the vertical side, and horizontal for the horizontal side. bool isWon(occupantType side); void displayhex_board(); void initialize_board(); int numberOfEmpties(); };