35 lines
697 B
C#
35 lines
697 B
C#
using Google.Protobuf;
|
|
using Google.Protobuf.WellKnownTypes;
|
|
|
|
|
|
using ServerCore;
|
|
using ServerBase;
|
|
using ServerCommon;
|
|
using ServerCommon.BusinessLogDomain;
|
|
using MetaAssets;
|
|
|
|
|
|
|
|
namespace GameServer;
|
|
|
|
public class QuestAcceptBusinessLog : ILogInvokerEx
|
|
{
|
|
QuestAcceptLogInfo m_info;
|
|
|
|
public QuestAcceptBusinessLog(UInt32 questId, UInt32 questRevision, EQuestType questType)
|
|
: base(LogDomainType.QuestMain)
|
|
{
|
|
m_info = new QuestAcceptLogInfo(this, questId, questRevision, questType);
|
|
}
|
|
public override bool hasLog()
|
|
{
|
|
return true;
|
|
}
|
|
|
|
protected override void fillup(ref BusinessLog.LogBody body)
|
|
{
|
|
body.append(m_info);
|
|
}
|
|
}
|
|
|