コード例 #1
0
ファイル: Player.cs プロジェクト: henceee/1dv607_2015
        public void PlayGame(model.DiceGame a_game, view.Console a_view)
        {
            a_view.DisplayInstructions();

            while (a_view.WantsToPlay())
            {
                a_view.DisplayInstructions();

                a_view.DisplayResult(a_game.Play(), a_game.GetDice1Value(), a_game.GetDice2Value());

            }
        }