Files
Novaria/Novaria.GameServer/Controllers/Api/ProtocolHandlers/Plot.cs
2025-03-03 23:21:28 +07:00

22 lines
574 B
C#

using Google.Protobuf;
using Novaria.Common.Core;
using Proto;
namespace Novaria.GameServer.Controllers.Api.ProtocolHandlers
{
public class Plot : ProtocolHandlerBase
{
public Plot(IProtocolHandlerFactory protocolHandlerFactory) : base(protocolHandlerFactory)
{
}
[ProtocolHandler(NetMsgId.plot_reward_receive_req)]
public Packet PlotRewardReceiveHandler(UI32 req)
{
ChangeInfo resp = new ChangeInfo();
return Packet.Create(NetMsgId.plot_reward_receive_succeed_ack, resp);
}
}
}