Exemplo n.º 1
0
        public Game(IMillionareRepository repo)
        {
            _repository = repo;

            Level = 1;
            CurrentQuestion = 0;
            Lives = COUNT_OF_LIVES;
            WinningSums = new int[] { 3000000, 1500000, 800000, 400000, 200000, 100000, 50000,
                                            25000, 15000, 10000, 5000, 3000, 2000, 1000, 500 };
            SetQuestionsFromLevel(Level);
        }