Farkle.Core.FarkleService.Play C# (CSharp) Метод

Play() публичный Метод

public Play ( GameState gameState, GameMove move ) : GameState
gameState GameState
move GameMove
Результат 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();
        }