server-master/srcs/_plugins/WingsEmu.Plugins.BasicImplementation/Managers/MapAttributeFactory.cs
2026-02-10 18:21:30 +01:00

12 lines
No EOL
414 B
C#

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