server-master/srcs/WingsAPI.Game/Core/NpcDialogHandling/INpcDialogHandlerContainer.cs
2026-02-10 18:21:30 +01:00

15 lines
No EOL
417 B
C#

using System.Threading.Tasks;
using WingsEmu.Game._NpcDialog.Event;
using WingsEmu.Game.Networking;
namespace WingsEmu.Game._NpcDialog;
public interface INpcDialogHandlerContainer
{
void Register(INpcDialogAsyncHandler handler);
void Unregister(INpcDialogAsyncHandler handler);
void Execute(IClientSession player, NpcDialogEvent e);
Task ExecuteAsync(IClientSession player, NpcDialogEvent e);
}