Farkle.Core.FarkleService.Play C# (CSharp) Method

Play() public method

public Play ( GameState gameState, GameMove move ) : GameState
gameState GameState
move GameMove
return GameState
        public GameState Play(GameState gameState, GameMove move)
        {
            // TODO: Look at the gameState passed in to get the dice values to keep
            // the player can Bank, Roll or they Farkled and must move to the next player
            // modify the scores, current player and return the game state

            return new GameState();
        }