Example #1
0
        private void gameSettings_lb_Click(object sender, EventArgs e)
        {
            if (MessageBox.Show("This menu is still under construction! Use at your own risk!", "Warning", MessageBoxButtons.OKCancel, MessageBoxIcon.Hand) == DialogResult.OK)
            {
                RappelzSettings.InitRappelzSettings();

                using (RappelzSettingsGUI settingsGUI = new RappelzSettingsGUI(RappelzSettings.Settings))
                {
                    settingsGUI.ShowDialog();
                }
            }
        }