mirror of
https://github.com/MikuLeaks/KianaBH3.git
synced 2025-12-15 22:34:38 +01:00
18 lines
343 B
C#
18 lines
343 B
C#
using KianaBH.KcpSharp;
|
|
using KianaBH.Proto;
|
|
|
|
namespace KianaBH.GameServer.Server.Packet.Send.Activity;
|
|
|
|
public class PacketGetBulletinRsp : BasePacket
|
|
{
|
|
public PacketGetBulletinRsp() : base(CmdIds.GetBulletinRsp)
|
|
{
|
|
var proto = new GetBulletinRsp
|
|
{
|
|
IsAll = true,
|
|
};
|
|
|
|
SetData(proto);
|
|
}
|
|
}
|