Files
KianaBH3/GameServer/Server/Packet/Send/GodWar/PacketGetGodWarRsp.cs
2025-06-14 11:15:32 +08:00

19 lines
343 B
C#

using KianaBH.KcpSharp;
using KianaBH.Proto;
namespace KianaBH.GameServer.Server.Packet.Send.GodWar;
public class PacketGetGodWarRsp : BasePacket
{
public PacketGetGodWarRsp() : base(CmdIds.GetGodWarRsp)
{
// TODO: Implement
var proto = new GetGodWarRsp
{
};
SetData(proto);
}
}