mirror of
https://github.com/rafi1212122/PemukulPaku
synced 2025-12-18 10:24:35 +01:00
lobby part 1, idk what i'm doing
This commit is contained in:
19
GameServer/Handlers/Three/GetPhotoDataReqHandler.cs
Normal file
19
GameServer/Handlers/Three/GetPhotoDataReqHandler.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
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));
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user