using System; using System.Collections.Generic; using WingsEmu.Game.Maps; namespace WingsEmu.Plugins.BasicImplementations.Managers; public class MapAttributeFactory : IMapAttributeFactory { private readonly Dictionary _mapAttributesTypes = new(); public IEnumerable CreateMapAttributes(Dictionary attributesKeyValue) => throw new NotImplementedException(); }