mirror of
https://github.com/raphaeIl/Novaria.git
synced 2025-12-16 08:25:32 +01:00
more handler, unfinished excel dump, added proxy alternative
This commit is contained in:
21
Novaria.GameServer/Controllers/Api/ProtocolHandlers/Tower.cs
Normal file
21
Novaria.GameServer/Controllers/Api/ProtocolHandlers/Tower.cs
Normal 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);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user