| | 1 | | using DCL; |
| | 2 | | using DCL.Controllers.LoadingScreenV2; |
| | 3 | | using DCL.Helpers; |
| | 4 | | using DCL.World.PortableExperiences; |
| | 5 | | using System.Collections.Generic; |
| | 6 | | using UnityEngine; |
| | 7 | |
|
| | 8 | | public class LoadingScreenV2Plugin : IPlugin |
| | 9 | | { |
| | 10 | | private readonly LoadingScreenHintsController controller; |
| | 11 | |
|
| 0 | 12 | | public LoadingScreenV2Plugin() |
| | 13 | | { |
| 0 | 14 | | controller = new LoadingScreenHintsController( |
| | 15 | | new HintRequestService(new List<IHintRequestSource>(), |
| | 16 | | new SceneController(new PlayerPrefsConfirmedExperiencesRepository(new DefaultPlayerPrefs())), new HintTe |
| | 17 | | ); |
| 0 | 18 | | } |
| | 19 | |
|
| | 20 | | public void Dispose() |
| | 21 | | { |
| 0 | 22 | | controller.Dispose(); |
| 0 | 23 | | } |
| | 24 | | } |