Exemplo n.º 1
0
        public async Task <ObjectControllerResult> StartThirdRound()
        {
            var result = await gameProcessService.StartThirdRound();

            if (result.IsSuccess)
            {
                await gameProcessContext.SendGameState();

                await gameProcessContext.PlayThirdRound();
            }
            return(Result(result));
        }