mirror of
https://github.com/rafi1212122/PemukulPaku
synced 2025-12-12 17:44:42 +01:00
20 lines
562 B
C#
20 lines
562 B
C#
using Common.Resources.Proto;
|
|
|
|
namespace PemukulPaku.GameServer.Handlers.Three
|
|
{
|
|
[PacketCmdId(CmdId.GetPhotoDataReq)]
|
|
internal class GetPhotoDataReqHandler : IPacketHandler
|
|
{
|
|
public void Handle(Session session, Packet packet)
|
|
{
|
|
GetPhotoDataReq Data = packet.GetDecodedBody<GetPhotoDataReq>();
|
|
|
|
session.Send(Packet.FromProto(new GetPhotoDataRsp()
|
|
{
|
|
retcode = GetPhotoDataRsp.Retcode.Succ,
|
|
Type = Data.Type
|
|
}, CmdId.GetPhotoDataRsp));
|
|
}
|
|
}
|
|
}
|