Пример #1
0
 public void Start()
 {
     thread = new System.Threading.Thread(() =>
     {
         encounter.AutoBattle();
     });
     thread.Name = "GameThread";
     thread.Start();
 }
        public void Start()
        {
            thread = new Thread(() =>
            {
                combat.AutoBattle();
            });

            thread.Name = "GameThread";

            thread.Start();
        }