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

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

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

            child.ShowDialog(this);
        }