mirror of
https://github.com/MikuLeaks/KianaBH3.git
synced 2025-12-13 05:14:46 +01:00
18 lines
354 B
C#
18 lines
354 B
C#
using KianaBH.KcpSharp;
|
|
using KianaBH.Proto;
|
|
|
|
namespace KianaBH.GameServer.Server.Packet.Send.Test;
|
|
|
|
public class PacketWaveRushGetActivityRsp : BasePacket
|
|
{
|
|
public PacketWaveRushGetActivityRsp() : base(CmdIds.WaveRushGetActivityRsp)
|
|
{
|
|
var proto = new WaveRushGetActivityRsp
|
|
{
|
|
|
|
};
|
|
|
|
SetData(proto);
|
|
}
|
|
}
|