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

18 lines
383 B
C#

using KianaBH.KcpSharp;
using KianaBH.Proto;
namespace KianaBH.GameServer.Server.Packet.Send.OpenWorld;
public class PacketGetOpenworldQuestActivityRsp : BasePacket
{
public PacketGetOpenworldQuestActivityRsp() : base(CmdIds.GetOpenworldQuestActivityRsp)
{
var proto = new GetOpenworldQuestActivityRsp
{
};
SetData(proto);
}
}