초기커밋
This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
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);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user