12 lines
305 B
C#
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)
|
|
{
|
|
}
|
|
}
|
|
}
|