using Google.Protobuf; using Google.Protobuf.WellKnownTypes; using ServerCore; using ServerBase; using ServerCommon; using ServerCommon.BusinessLogDomain; using MetaAssets; namespace GameServer; public class QuestMailBusinessLog : ILogInvokerEx { QuestMailLogInfo m_info; public QuestMailBusinessLog(QuestMailAttribute attribute, QuestMailLogType type) : base(LogDomainType.QuestMail) { m_info = new QuestMailLogInfo(this, attribute, type); } public override bool hasLog() { return true; } protected override void fillup(ref BusinessLog.LogBody body) { body.append(m_info); } }