250501 커밋
This commit is contained in:
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user