public void Shoot()
        {
            bool shotLanded = playerField.CheckShot(currentCell, out bool shipDestroyed);

            if (!(playerField.ShipsDestroyed))
            {
                ChooseNextCell(shotLanded, shipDestroyed);
            }
        }