mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-03 04:36:03 +08:00
17 lines
480 B
C#
17 lines
480 B
C#
using EggLink.DanhengServer.Proto;
|
|
|
|
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);
|
|
}
|
|
} |