Ejemplo n.º 1
0
        public void SetupGame()
        {
            LegendOfDrongoEngine GameEngine = new LegendOfDrongoEngine(this);

            LegendOfDrongoEngine.ParseOptions();
            LegendOfDrongoEngine.Warning();
            pnlWarning.Visible = true;
        }
Ejemplo n.º 2
0
        private void lblOptions_Click(object sender, EventArgs e)
        {
            Process proc = new Process();

            proc = Process.Start(Directory.GetCurrentDirectory() + "\\Options.txt");
            while (proc.HasExited == false)
            {
            }
            LegendOfDrongoEngine.ParseOptions();
        }