Files
caliverse_server/GameServer/Contents/Quest/QuestChecker/QuestChannel.cs
2025-05-01 07:20:41 +09:00

12 lines
305 B
C#

using ServerCommon;
namespace GameServer.Quest
{
public class QuestChannel : QuestBase
{
public QuestChannel(EQuestEventTargetType targetType, EQuestEventNameType eventNameType) : base(targetType, eventNameType, 0, string.Empty, string.Empty, string.Empty)
{
}
}
}