コード例 #1
0
        public void SwarmBattle(Monster m, Party heros)
        {
            MessageBox.Show("Your Party enters the room...\r\n" +
                            "And you are ambushed by a horde of " + m.getName() + "s that fill the room!\r\n" +
                            "Completely surrounded, you party prepares for a hard fight...");

            var bw = new BattleWindow_Swarm(m, heros);

            bw.ShowDialog();
            updateHeroVisuals();
        }
コード例 #2
0
        private void btn_MonsterChoice23_Click(object sender, RoutedEventArgs e)
        {
            var bw = new BattleWindow_Swarm(new Hellhound(), _TheParty);

            bw.ShowDialog();
        }