mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-02 20:26:03 +08:00
22 lines
587 B
C#
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);
|
|
}
|
|
} |