14 lines
No EOL
251 B
C#
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);
|
|
} |