server-master/srcs/WingsAPI.Game/Managers/ServerData/IShopManager.cs
2026-02-10 18:21:30 +01:00

14 lines
No EOL
251 B
C#

// WingsEmu
//
// Developed by NosWings Team
using System.Threading.Tasks;
using WingsEmu.Game.Shops;
namespace WingsEmu.Game.Managers.ServerData;
public interface IShopManager
{
Task InitializeAsync();
ShopNpc GetShopByNpcId(int npcId);
}