Files
DanhengServer-OpenSource/GameServer/Server/Packet/Send/Challenge/PacketChallengeLineupNotify.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

16 lines
396 B
C#

using EggLink.DanhengServer.Proto;
namespace EggLink.DanhengServer.Server.Packet.Send.Challenge;
public class PacketChallengeLineupNotify : BasePacket
{
public PacketChallengeLineupNotify(ExtraLineupType type) : base(CmdIds.ChallengeLineupNotify)
{
var proto = new ChallengeLineupNotify
{
ExtraLineupType = type
};
SetData(proto);
}
}