12 lines
No EOL
414 B
C#
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();
|
|
} |