From ac9ac7adb18522814c2e0d05c6a5138d5e3189f2 Mon Sep 17 00:00:00 2001 From: "yonglian146@gmail.com" Date: Wed, 10 Sep 2014 00:48:41 +0800 Subject: [PATCH] Pointless Fix Reverted --- player.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/player.hpp b/player.hpp index 04e38b6..a099a77 100644 --- a/player.hpp +++ b/player.hpp @@ -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 >* 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; };