Пример #1
0
        public ActionResult Play(GameState gameState, string move)
        {
            var service = new FarkleService();

            //gameState = service.Play(gameState, move);
            //return View(gameState);
            return(null);
        }
Пример #2
0
        public ActionResult NewGame(GameSetup setup)
        {
            var service   = new FarkleService();
            var gameState = service.StartNewGame(setup);

            //return View("Play", gameState);
            return(null);
        }