Exemplo n.º 1
0
        public MainWindow()
        {
            InitializeComponent();

            DownloadHiscores downloadHiscores = new DownloadHiscores();

            // Saves the Hiscores to a JSON File after downloading the CSV format from the website / API
            //SaveHiscores2Json saveHiscores = new SaveHiscores2Json();
            //saveHiscores.SaveHiscores(downloadHiscores.Download(RS3.RS3_Hiscore_Regular, "waber"), "waber");

            CompareStatsToQuestRequirements compareQuestRequirements = new CompareStatsToQuestRequirements();

            GenerateQuests.ExecuteQuestGeneration();

            compareQuestRequirements.CompareQuestRequirements(File.ReadAllText(@"Quests\Old School Runescape\Cooks_Assistant.json"));

        }
Exemplo n.º 2
0
 private void GenerateQuestsButton_Click(object sender, RoutedEventArgs e)
 {
     GenerateQuests.ExecuteQuestGeneration();
 }