Skip to content

Commit

Permalink
Minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
HiiYL committed Sep 9, 2014
1 parent 98a61f8 commit a1208c7
Show file tree
Hide file tree
Showing 2 changed files with 1,106 additions and 1,091 deletions.
2 changes: 1 addition & 1 deletion player.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ class Player {
bool checkTie(int index);
bool checkWin(int index);
bool checkWinAI(int index, int box_index);
char player_symbol;
private:
bool win;
std::vector<std::vector<char> >* grid_ptr;
int curr_grid_x; //remembers current grid for use with checking for tie
int curr_grid_y; //ditto
int curr_index;

char player_symbol;
bool tie;
};

Expand Down

0 comments on commit a1208c7

Please sign in to comment.