server-master/srcs/WingsAPI.Game/Entities/IShopFactory.cs
2026-02-10 18:21:30 +01:00

9 lines
No EOL
167 B
C#

using WingsAPI.Data.Shops;
using WingsEmu.Game.Shops;
namespace WingsEmu.Game.Entities;
public interface IShopFactory
{
ShopNpc CreateShop(ShopDTO shopDto);
}