Beispiel #1
0
        public void HighScoreTest()
        {
            GameControl gameControl = GameControl.GetMaintained();

            gameControl.ChooseLayout(1);
            gameControl.AddHighscore("McTavish", false);
            List <HighScoreInfo> higscores = gameControl.GetHighscores();

            foreach (HighScoreInfo h in higscores)
            {
                Debug.WriteLine(h);
            }
        }