9 lines
No EOL
260 B
C#
9 lines
No EOL
260 B
C#
using System.Collections.Generic;
|
|
using WingsEmu.Game.Maps;
|
|
|
|
namespace WingsEmu.Plugins.BasicImplementations.Managers;
|
|
|
|
public interface IMapAttributeFactory
|
|
{
|
|
IEnumerable<IMapAttribute> CreateMapAttributes(Dictionary<string, object> attributesKeyValue);
|
|
} |