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

16 lines
No EOL
378 B
C#

using WingsEmu.DTOs.Quests;
using WingsEmu.Game._packetHandling;
namespace WingsEmu.Game.Quests.Event;
public class AddQuestEvent : PlayerEvent
{
public AddQuestEvent(int questId, QuestSlotType questSlotType)
{
QuestId = questId;
QuestSlotType = questSlotType;
}
public int QuestId { get; }
public QuestSlotType QuestSlotType { get; }
}