예제 #1
0
        private void ChoosePlayerForNextTurn()
        {
            if (_actionExecutor.HasToPickAnotherOption())
            {
                return;
            }

            if (!_currentPlayer.CanPickAnotherSpirit())
            {
                _actionExecutor.ApplyBite();
                SwitchPlayer();
            }
        }