Ejemplo n.º 1
0
        public Form1()
        {
            InitializeComponent();
            //highscores.Add("david", 0); // line for testing

            Quiz.LoadHighScoresFromFile();
            this.highscores = Quiz.highscores;

            Quiz.questionsLvl1.Add(new Question("How are you", "good", "very good", "excellent", "bad", 'D'));

            ReadHighScoresFromFile(); //needs implementation
        }
Ejemplo n.º 2
0
        public Form1()
        {
            InitializeComponent();
            //highscores.Add("david", 0); // line for testing

            Quiz.LoadHighScoresFromFile();
            Quiz.LoadQuestionsFromFile();

            this.highscores = Quiz.highscores;

            DisplayHighScores();
        }