Ejemplo n.º 1
0
 public void Start()
 {
     thread = new System.Threading.Thread(() =>
     {
         encounter.AutoBattle();
     });
     thread.Name = "GameThread";
     thread.Start();
 }
Ejemplo n.º 2
0
        public void Start()
        {
            thread = new Thread(() =>
            {
                combat.AutoBattle();
            });

            thread.Name = "GameThread";

            thread.Start();
        }