mirror of
https://github.com/MikuLeaks/KianaBH3.git
synced 2025-12-14 22:04:36 +01:00
21 lines
405 B
C#
21 lines
405 B
C#
using KianaBH.KcpSharp;
|
|
using KianaBH.Proto;
|
|
|
|
namespace KianaBH.GameServer.Server.Packet.Send.GodWar;
|
|
|
|
public class PacketGetGodWarLobbyRsp : BasePacket
|
|
{
|
|
public PacketGetGodWarLobbyRsp() : base(CmdIds.GetGodWarLobbyRsp)
|
|
{
|
|
// TODO: Hardcoded
|
|
|
|
var proto = new GetGodWarLobbyRsp
|
|
{
|
|
GodWarId = 1,
|
|
LobbyId = 2
|
|
};
|
|
|
|
SetData(proto);
|
|
}
|
|
}
|