more handler, unfinished excel dump, added proxy alternative

This commit is contained in:
ArkanDash
2025-03-03 20:14:51 +07:00
parent f269800704
commit 54bb351e5b
10 changed files with 837 additions and 12 deletions

View File

@@ -0,0 +1,21 @@
using Google.Protobuf;
using Novaria.Common.Core;
using Proto;
namespace Novaria.GameServer.Controllers.Api.ProtocolHandlers
{
public class Tower : ProtocolHandlerBase
{
public Tower(IProtocolHandlerFactory protocolHandlerFactory) : base(protocolHandlerFactory)
{
}
[ProtocolHandler(NetMsgId.tower_growth_detail_req)]
public Packet TowerGrowthDetailHandler(Nil req)
{
TowerGrowthDetailResp resp = new TowerGrowthDetailResp();
return Packet.Create(NetMsgId.tower_growth_detail_succeed_ack, resp);
}
}
}