public bool update()
        {
            bird.update();
            updateTubes();

            if (CheckColliding())
            {
                return(false);
            }
            else
            {
                return(true);
            }
        }