TicTacToeGameUtil.TicTacToeGameBasic.TicTacToeGameBasic C# (CSharp) Method

TicTacToeGameBasic() public method

public TicTacToeGameBasic ( int fullStateToken ) : System.Collections.Generic
fullStateToken int
return System.Collections.Generic
        public TicTacToeGameBasic(int fullStateToken)
        {
            _allGamePlays = fullStateToken.ToString().Select(d => int.Parse(d.ToString())).ToList();
            NextPlayer = AllGamePlays.Count % 2 != 0 ? 1 : 2;
        }

Same methods

TicTacToeGameBasic::TicTacToeGameBasic ( int stateToken, int nextPlay ) : System.Collections.Generic