mirror of
https://github.com/raphaeIl/Novaria.git
synced 2025-12-16 16:34:44 +01:00
more handler, unfinished excel dump, added proxy alternative
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
using Novaria.Common.Core;
|
||||
using Proto;
|
||||
using Serilog;
|
||||
|
||||
namespace Novaria.GameServer.Controllers.Api.ProtocolHandlers
|
||||
{
|
||||
public class RegionBossLevel : ProtocolHandlerBase
|
||||
{
|
||||
public RegionBossLevel(IProtocolHandlerFactory protocolHandlerFactory) : base(protocolHandlerFactory)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
[ProtocolHandler(NetMsgId.region_boss_level_apply_req)]
|
||||
public Packet RegionBossLevelApplyHandler(RegionBossLevelApplyReq req)
|
||||
{
|
||||
ChangeInfo regionBossChangeInfo = new ChangeInfo();
|
||||
|
||||
return Packet.Create(NetMsgId.region_boss_level_apply_succeed_ack, regionBossChangeInfo);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user