using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; public class MultiDialogueDataListManager : DataListManager { // WE DONT NEED HERE UI MANAGER - because dialoges ane;t associated with ui panels in way like inventory / chest or shop public override void AddElementToList(MultiDialogueData newElement) { Elements.Add(newElement); } public override void RemoveElementFromList(MultiDialogueData element) { throw new NotImplementedException(); } }