mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-03 04:36:03 +08:00
20 lines
611 B
C#
20 lines
611 B
C#
using EggLink.DanhengServer.GameServer.Game.ChessRogue;
|
|
using EggLink.DanhengServer.Kcp;
|
|
using EggLink.DanhengServer.Proto;
|
|
|
|
namespace EggLink.DanhengServer.GameServer.Server.Packet.Send.ChessRogue;
|
|
|
|
public class PacketChessRogueLayerAccountInfoNotify : BasePacket
|
|
{
|
|
public PacketChessRogueLayerAccountInfoNotify(ChessRogueInstance rogue) : base(CmdIds
|
|
.ChessRogueLayerAccountInfoNotify)
|
|
{
|
|
var proto = new ChessRogueLayerAccountInfoNotify
|
|
{
|
|
FinishInfo = rogue.ToFinishInfo()
|
|
//LayerId = (uint)rogue.CurLayer,
|
|
};
|
|
|
|
SetData(proto);
|
|
}
|
|
} |