Files
caliverse_server/ServerCommon/BusinessLog/LogInvoker/LandBusinessLog.cs
2025-05-01 07:20:41 +09:00

30 lines
511 B
C#

using ServerCore;
using ServerBase;
namespace ServerCommon.BusinessLogDomain;
public class LandBusinessLog : ILogInvokerEx
{
private LandLogInfo m_data_to_log;
public LandBusinessLog(LandLogInfo logParam)
: base(LogDomainType.Land)
{
m_data_to_log = logParam;
}
public override bool hasLog()
{
return true;
}
protected override void fillup(ref BusinessLog.LogBody body)
{
body.append(new LandLogInfo(this, m_data_to_log));
}
}