| | 1 | | using DCL.Emotes; |
| | 2 | | using DCLServices.WearablesCatalogService; |
| | 3 | |
|
| | 4 | | namespace DCL.EmotesWheel |
| | 5 | | { |
| | 6 | | /// <summary> |
| | 7 | | /// Plugin feature that initialize the Emotes Wheel feature. |
| | 8 | | /// </summary> |
| | 9 | | public class EmotesWheelUIPlugin : IPlugin |
| | 10 | | { |
| | 11 | | public EmotesWheelController emotesWheelController; |
| | 12 | |
|
| 0 | 13 | | public EmotesWheelUIPlugin() |
| | 14 | | { |
| 0 | 15 | | emotesWheelController = new EmotesWheelController( |
| | 16 | | UserProfile.GetOwnUserProfile(), |
| | 17 | | Environment.i.serviceLocator.Get<IEmotesService>(), |
| | 18 | | Environment.i.serviceLocator.Get<IWearablesCatalogService>()); |
| 0 | 19 | | } |
| | 20 | |
|
| 0 | 21 | | public void Dispose() { } |
| | 22 | | } |
| | 23 | | } |