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(); }
public static void InitialiseGame() { var Battle = new BattlePath(); var choiceWindow = new ChoiceWindow(Battle); choiceWindow.ShowDialog(); }