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

13 lines
No EOL
313 B
C#

using System.Threading.Tasks;
using WingsEmu.Game._NpcDialog.Event;
using WingsEmu.Game.Networking;
using WingsEmu.Packets.Enums;
namespace WingsEmu.Game._NpcDialog;
public interface INpcDialogAsyncHandler
{
NpcRunType[] NpcRunTypes { get; }
Task Execute(IClientSession session, NpcDialogEvent e);
}