public override void SetUpReference()
        {
            IMainMenuUIElement mainMenuUIElement = mainMenuUIAdaptor.GetMainMenuUIElement();

            thisTutorialManager.SetMainMenuUIElement(mainMenuUIElement);
            IGameplayUIElement gameplayUIElement = gameplayUIAdaptor.GetGameplayUIElement();

            thisTutorialManager.SetGameplayUIElement(gameplayUIElement);
            IUIElementGroupScroller rootScroller = (IUIElementGroupScroller)rootScrollerAdaptor.GetUIElement();

            thisTutorialManager.SetRootScroller(rootScroller);
            IFrostManager frostManager = frostManagerAdaptor.GetFrostManager();

            thisTutorialManager.SetFrostManager(frostManager);
            ITutorialTitle tutorialTitle = tutorialTitleAdaptor.GetTutorialTitle();

            thisTutorialManager.SetTutorialTitle(tutorialTitle);
            ITutorialBaseUIElement tutorialBaseUIElement = tutorialBaseUIAdaptor.GetTutorialBaseUIElement();

            thisTutorialManager.SetTutorialBaseUIElement(tutorialBaseUIElement);
        }
 public void SetTutorialTitle(ITutorialTitle title)
 {
     thisTutorialTitle = title;
 }