13 lines
312 B
C#
13 lines
312 B
C#
using ServerCommon;
|
|
|
|
namespace GameServer
|
|
{
|
|
public class QuestAvatarProfile : QuestBase
|
|
{
|
|
public QuestAvatarProfile(EQuestEventTargetType targetType, EQuestEventNameType eventNameType) : base(targetType, eventNameType, 0, string.Empty, string.Empty, string.Empty)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|