초기커밋

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,47 @@
using Newtonsoft.Json;
using WORLD_ID = System.UInt32;
using ServerCore;
using ServerBase;
namespace ServerCommon;
public class NoticeChatActorLog : ILogActor
{
// 서버 정보
[JsonProperty]
public string RegionId { get; private set; } = string.Empty;
[JsonProperty]
public WORLD_ID WorldId { get; private set; } = 0;
[JsonProperty]
public ServerType ServerType { get; private set; } = ServerType.None;
public void initLogInfo(string regionId, WORLD_ID worldId, ServerType serverType)
{
RegionId = regionId;
WorldId = worldId;
ServerType = serverType;
}
public void setLogInfo(NoticeChatActorLog logInfo)
{
RegionId = logInfo.RegionId;
WorldId = logInfo.WorldId;
ServerType = logInfo.ServerType;
}
public NoticeChatActorLog()
{
}
public NoticeChatActorLog(NoticeChatActorLog logInfo)
{
setLogInfo(logInfo);
}
}