Files
caliverse_server/GameServer/Contents/QuestUGQ/Log/UgqReportBusinessLog.cs
2025-05-01 07:20:41 +09:00

34 lines
676 B
C#

using Google.Protobuf;
using Google.Protobuf.WellKnownTypes;
using ServerCore;
using ServerBase;
using ServerCommon;
using ServerCommon.BusinessLogDomain;
using MetaAssets;
namespace GameServer;
public class UgqReportBusinessLog : ILogInvokerEx
{
UgqReportLogInfo m_info;
public UgqReportBusinessLog(UInt32 questId, UInt32 questRevision, string report)
: base(LogDomainType.QuestUgq)
{
m_info = new UgqReportLogInfo(this, questId, questRevision, report);
}
public override bool hasLog()
{
return true;
}
protected override void fillup(ref BusinessLog.LogBody body)
{
body.append(m_info);
}
}