38 lines
769 B
C#
38 lines
769 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
using Amazon.CloudWatchLogs.Model.Internal.MarshallTransformations;
|
|
|
|
|
|
using ServerBase;
|
|
using ServerCommon;
|
|
|
|
|
|
namespace ServerCommon.BusinessLogDomain;
|
|
|
|
|
|
public class QuestRewardBusinessLog : ILogInvokerEx
|
|
{
|
|
QuestRewardLogInfo m_info;
|
|
public QuestRewardBusinessLog(UInt32 questId, UInt32 questRevision, Int32 rewardGroupId)
|
|
: base(LogDomainType.QuestMain)
|
|
{
|
|
m_info = new QuestRewardLogInfo(this, questId, questRevision, rewardGroupId);
|
|
}
|
|
|
|
public override bool hasLog()
|
|
{
|
|
return true;
|
|
}
|
|
|
|
protected override void fillup(ref BusinessLog.LogBody body)
|
|
{
|
|
body.append(m_info);
|
|
}
|
|
}
|
|
|