Files
DanhengServer-OpenSource/GameServer/Server/Packet/Send/ChessRogue/PacketChessRogueUpdateLevelBaseInfoScNotify.cs
2024-05-01 20:37:28 +08:00

23 lines
636 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.ChessRogue
{
public class PacketChessRogueUpdateLevelBaseInfoScNotify : BasePacket
{
public PacketChessRogueUpdateLevelBaseInfoScNotify(ChessRogueLevelStatusType status) : base(CmdIds.ChessRogueUpdateLevelBaseInfoScNotify)
{
var proto = new ChessRogueUpdateLevelBaseInfoScNotify()
{
LevelStatus = status
};
SetData(proto);
}
}
}