示例#1
0
        private void Button_PatchOptimized_Click(object sender, EventArgs e)
        {
            Variables.PatchMode = Variables.PatchType.Optimization;
            var child = new PatchForm();

            child.ShowDialog(this);
        }
示例#2
0
        private void Button_PatchMisc_Click(object sender, EventArgs e)
        {
            Variables.PatchMode = Variables.PatchType.Miscellaneous;
            var child = new PatchForm();

            child.ShowDialog(this);
        }
示例#3
0
        private void Button_PatchCharacter_Click(object sender, EventArgs e)
        {
            Variables.PatchMode = Variables.PatchType.Character;
            var child = new PatchForm();

            child.ShowDialog(this);
        }