mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-03 04:36:03 +08:00
20 lines
598 B
C#
20 lines
598 B
C#
using EggLink.DanhengServer.Kcp;
|
|
using EggLink.DanhengServer.Proto;
|
|
|
|
namespace EggLink.DanhengServer.GameServer.Server.Packet.Send.HeartDial;
|
|
|
|
public class PacketFinishEmotionDialoguePerformanceScRsp : BasePacket
|
|
{
|
|
public PacketFinishEmotionDialoguePerformanceScRsp(uint scriptId, uint dialogueId) : base(
|
|
CmdIds.FinishEmotionDialoguePerformanceScRsp)
|
|
{
|
|
var proto = new FinishEmotionDialoguePerformanceScRsp
|
|
{
|
|
DialogueId = dialogueId,
|
|
ScriptId = scriptId,
|
|
RewardList = new ItemList()
|
|
};
|
|
|
|
SetData(proto);
|
|
}
|
|
} |