250501 커밋

This commit is contained in:
2025-05-01 07:23:28 +09:00
parent 98bb2e3c5c
commit 23176551b7
353 changed files with 9972 additions and 6652 deletions

View File

@@ -1,15 +1,11 @@

using ServerCore;
using NLog.Config;
using ServerBase;
using ServerCommon;
namespace BrokerCore;
using NLog.Config;
using ServerCore;
using MODULE_ID = System.UInt32;
namespace BrokerApiCore;
public sealed class BrokerServerLogic : IServerLogic, IWithLogActor, IInitializer
{
@@ -25,9 +21,15 @@ public sealed class BrokerServerLogic : IServerLogic, IWithLogActor, IInitialize
m_server_config = serverConfig;
}
public IModule getModule(MODULE_ID moduleId) { throw new NullReferenceException(); }
public IModule getModule(MODULE_ID moduleId)
{
return null;
}
public Result registerEntityTicker(EntityTicker entityTicker) { throw new NullReferenceException(); }
public Result registerEntityTicker(EntityTicker entityTicker)
{
return null;
}
public async Task<Result> onInit()