mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-03 04:36:03 +08:00
Feature:Asynchronous Operation & Formatting Code
- Now the async operation is enabled! - Code formatted by Resharper plugin <3
This commit is contained in:
@@ -1,25 +1,19 @@
|
||||
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
|
||||
namespace EggLink.DanhengServer.Server.Packet.Send.Tutorial;
|
||||
|
||||
public class PacketUnlockTutorialGuideScRsp : BasePacket
|
||||
{
|
||||
public class PacketUnlockTutorialGuideScRsp : BasePacket
|
||||
public PacketUnlockTutorialGuideScRsp(uint tutorialId) : base(CmdIds.UnlockTutorialGuideScRsp)
|
||||
{
|
||||
public PacketUnlockTutorialGuideScRsp(uint tutorialId) : base(CmdIds.UnlockTutorialGuideScRsp)
|
||||
var proto = new UnlockTutorialGuideScRsp
|
||||
{
|
||||
var proto = new UnlockTutorialGuideScRsp
|
||||
TutorialGuide = new TutorialGuide
|
||||
{
|
||||
TutorialGuide = new()
|
||||
{
|
||||
Id = tutorialId,
|
||||
Status = TutorialStatus.TutorialUnlock,
|
||||
}
|
||||
};
|
||||
SetData(proto);
|
||||
}
|
||||
Id = tutorialId,
|
||||
Status = TutorialStatus.TutorialUnlock
|
||||
}
|
||||
};
|
||||
SetData(proto);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user