Files
DanhengServer-OpenSource/GameServer/Server/Packet/Send/Tutorial/PacketUnlockTutorialScRsp.cs
2024-03-16 22:50:34 +08:00

26 lines
671 B
C#

using EggLink.DanhengServer.Proto;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace EggLink.DanhengServer.Server.Packet.Send.Tutorial
{
public class PacketUnlockTutorialScRsp : BasePacket
{
public PacketUnlockTutorialScRsp(uint tutorialId) : base(CmdIds.UnlockTutorialScRsp)
{
var proto = new UnlockTutorialScRsp
{
Tutorial = new()
{
Id = tutorialId,
Status = TutorialStatus.TutorialUnlock,
}
};
SetData(proto);
}
}
}