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

17 lines
No EOL
377 B
C#

using WingsEmu.Game._packetHandling;
using WingsEmu.Packets.Enums;
namespace WingsEmu.Game._NpcDialog.Event;
public class NpcDialogEvent : PlayerEvent
{
public NpcRunType NpcRunType { get; set; }
public short Argument { get; set; }
public VisualType VisualType { get; set; }
public long NpcId { get; set; }
public byte? Confirmation { get; set; }
}