public void ToggleIsGameOver(bool isGameOver)
        {
            if (CheckForCharacterProfile() == false)
            {
                return;
            }

            m_characterProfile.SetIsGameOver(isGameOver);
        }