Ejemplo n.º 1
0
        private void Fight()
        {
            var fight = new Fight(Hero);

            fight.Start();
        }
Ejemplo n.º 2
0
        public void Fight()
        {
            var fight = new Fight(this.hero, this);

            fight.Start();
        }