mirror of
https://github.com/rafi1212122/PemukulPaku
synced 2025-12-13 15:54:35 +01:00
14 lines
413 B
C#
14 lines
413 B
C#
using Common.Resources.Proto;
|
|
|
|
namespace PemukulPaku.GameServer.Handlers
|
|
{
|
|
[PacketCmdId(CmdId.GetBulletinReq)]
|
|
internal class GetBulletinReqHandler : IPacketHandler
|
|
{
|
|
public void Handle(Session session, Packet packet)
|
|
{
|
|
session.Send(Packet.FromProto(new GetBulletinRsp() { retcode = GetBulletinRsp.Retcode.Succ, IsAll = true }, CmdId.GetBulletinRsp));
|
|
}
|
|
}
|
|
}
|