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

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);
}