Exemplo n.º 1
0
        void Thorow()
        {
            if (!_fightIsClosed)
            {
                float input = _input[curInputIndex];
                curInputIndex = (curInputIndex + 1) % _input.Length;

                Console.WriteLine(typeof(FightBot).Name + $" Login={Login} throw knife");
                _fightController.SendThrow(input);
            }
        }