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