Files
DanhengServer-OpenSource/GameServer/Server/Packet/Send/MapRotation/PacketEnterMapRotationRegionScRsp.cs
2024-08-06 20:57:20 +08:00

22 lines
587 B
C#

using EggLink.DanhengServer.Kcp;
using EggLink.DanhengServer.Proto;
namespace EggLink.DanhengServer.GameServer.Server.Packet.Send.MapRotation;
public class PacketEnterMapRotationRegionScRsp : BasePacket
{
public PacketEnterMapRotationRegionScRsp(MotionInfo motion) : base(CmdIds.EnterMapRotationRegionScRsp)
{
var proto = new EnterMapRotationRegionScRsp
{
Motion = motion,
EnergyInfo = new RotaterEnergyInfo
{
CurNum = 5,
MaxNum = 5
}
};
SetData(proto);
}
}