예제 #1
0
파일: Form1.cs 프로젝트: speters1995/Wolf
        private void unlockCardsToolStripMenuItem_Click(object sender, EventArgs e)
        {
            var man = new Manager();

            man.Load();
            var save = new Game_Save();

            save.UnlockAllCards();
            save.SetAllOwnedCardsCount(3);
            save.SetAllCampaignDuels(CampaignDuelState.Complete);
            save.Save();
        }
예제 #2
0
파일: Form1.cs 프로젝트: speters1995/Wolf
        private void unlockOtherToolStripMenuItem_Click(object sender, EventArgs e)
        {
            var man = new Manager();

            man.Load();
            var save = new Game_Save();

            save.Load();
            save.UnlockPadlockedContent();
            save.UnlockAllAvatars();
            save.SetAllOwnedCardsCount(3, true);
            save.UnlockAllRecipes();
            save.SetAllCampaignDuels(CampaignDuelState.Complete);
            save.Save();
            MessageBox.Show("Done Unlocking All Content!\nYou Will Need To Play Through The Story To Unlock The Duels.",
                            "All Content Unlocked", MessageBoxButtons.OK, MessageBoxIcon.Information);
        }