/// <summary>
        /// Set Button interactable false if save game not loadable
        /// </summary>
        private void Awake()
        {
            saveLoadService = new SaveLoadServiceImpl();

            if (!saveLoadService.CheckIfLoadable())
            {
                Button buttonObject = button.GetComponent <Button>();
                buttonObject.interactable = false;
            }
        }