초기커밋

This commit is contained in:
2025-05-01 07:20:41 +09:00
commit 98bb2e3c5c
2747 changed files with 646947 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
using Newtonsoft.Json;
using ServerBase;
namespace ServerCommon.BusinessLogDomain;
public class SwitchingPropLogInfo : ILogInvoker.IInfo
{
[JsonProperty("quest_id")]
public UInt32 m_quest_id { get; set; } = 0;
[JsonProperty("prop_id")]
public Int32 m_prop_id { get; set; } = 0;
[JsonProperty("prop_state")]
public Int32 m_prop_state { get; set; } = 0;
public SwitchingPropLogInfo(ILogInvoker parent, UInt32 questId, Int32 propId, Int32 propState) : base(parent)
{
m_quest_id = questId;
m_prop_id = propId;
m_prop_state = propState;
}
}