server-master/srcs/WingsAPI.Game/Quests/Event/QuestNpcTalkEvent.cs
2026-02-10 18:21:30 +01:00

18 lines
No EOL
538 B
C#

using WingsEmu.Game._packetHandling;
using WingsEmu.Game.Entities;
namespace WingsEmu.Game.Quests.Event;
public class QuestNpcTalkEvent : PlayerEvent
{
public QuestNpcTalkEvent(CharacterQuest characterQuest, INpcEntity npcEntity, bool isByBlueAlertNrun = false)
{
CharacterQuest = characterQuest;
NpcEntity = npcEntity;
IsByBlueAlertNrun = isByBlueAlertNrun;
}
public CharacterQuest CharacterQuest { get; }
public INpcEntity NpcEntity { get; }
public bool IsByBlueAlertNrun { get; }
}