Files
DanhengServer-OpenSource/GameServer/Server/Packet/Send/Tutorial/PacketUnlockTutorialScRsp.cs
Somebody 87d228eb79 Feature:Asynchronous Operation & Formatting Code
- Now the async operation is enabled!
- Code formatted by Resharper plugin <3
2024-07-22 17:12:03 +08:00

19 lines
504 B
C#

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