Ejemplo n.º 1
0
        public ChoiceWindow(BattlePath bp)
            : this()
        {            
            foreach (var item in CoreEngine.OpenForms)
            {
                if(item is CombatScreen||item is LooseWindow)
                {
                    item.Close();
                }
            }

            this.battlePath = bp;
            this.labelStatsPlayer.Text = ScreenStats();            
        }
Ejemplo n.º 2
0
 public static void  InitialiseGame()
 {
     var Battle = new BattlePath();
     var choiceWindow = new ChoiceWindow(Battle);
     choiceWindow.ShowDialog();
 }