mirror of
https://github.com/MikuLeaks/KianaBH3.git
synced 2025-12-14 22:04:36 +01:00
19 lines
343 B
C#
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);
|
|
}
|
|
}
|