using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; public class MissionConditionDataListManager : 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(IndexValuePair> newElement) { Elements.Add(newElement); } public override void RemoveElementFromList(IndexValuePair> element) { throw new NotImplementedException(); } }