mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-03 04:36:03 +08:00
21 lines
642 B
C#
21 lines
642 B
C#
using EggLink.DanhengServer.Kcp;
|
|
using EggLink.DanhengServer.Proto;
|
|
|
|
namespace EggLink.DanhengServer.GameServer.Server.Packet.Send.TalkEvent;
|
|
|
|
public class PacketGetFirstTalkByPerformanceNpcScRsp : BasePacket
|
|
{
|
|
public PacketGetFirstTalkByPerformanceNpcScRsp(GetFirstTalkByPerformanceNpcCsReq req) : base(
|
|
CmdIds.GetFirstTalkByPerformanceNpcScRsp)
|
|
{
|
|
var rsp = new GetFirstTalkByPerformanceNpcScRsp();
|
|
|
|
foreach (var id in req.PerformanceIdList)
|
|
rsp.NpcMeetStatusList.Add(new NpcMeetByPerformanceStatus
|
|
{
|
|
PerformanceId = id
|
|
});
|
|
|
|
SetData(rsp);
|
|
}
|
|
} |