mirror of
https://github.com/MikuLeaks/KianaBH3.git
synced 2025-12-15 06:14:35 +01:00
18 lines
476 B
C#
18 lines
476 B
C#
using KianaBH.KcpSharp;
|
|
using KianaBH.Proto;
|
|
|
|
namespace KianaBH.GameServer.Server.Packet.Send.Dummy;
|
|
|
|
public class PacketGetTowerRaidActivityRsp : BasePacket
|
|
{
|
|
public PacketGetTowerRaidActivityRsp() : base(CmdIds.GetTowerRaidActivityRsp)
|
|
{
|
|
var proto = new GetTowerRaidActivityRsp
|
|
{
|
|
Retcode = GetTowerRaidActivityRsp.Types.Retcode.NotOpen, // set to NotOpen to prevent null reference error pop up
|
|
};
|
|
|
|
SetData(proto);
|
|
}
|
|
}
|