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

8 lines
No EOL
185 B
C#

using WingsEmu.DTOs.Quests;
namespace WingsEmu.Game.Quests;
public interface IQuestFactory
{
CharacterQuest NewQuest(long characterId, int questId, QuestSlotType questSlotType);
}