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

27 lines
515 B
C#

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