mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-03 04:36:03 +08:00
21 lines
537 B
C#
21 lines
537 B
C#
using EggLink.DanhengServer.Proto;
|
|
|
|
namespace EggLink.DanhengServer.Server.Packet.Send.Scene;
|
|
|
|
public class PacketEnterMapRotationRegionScRsp : BasePacket
|
|
{
|
|
public PacketEnterMapRotationRegionScRsp(MotionInfo motion) : base(CmdIds.EnterMapRotationRegionScRsp)
|
|
{
|
|
var proto = new EnterMapRotationRegionScRsp
|
|
{
|
|
Motion = motion,
|
|
EnergyInfo = new RotatorEnergyInfo
|
|
{
|
|
CurNum = 5,
|
|
MaxNum = 5
|
|
}
|
|
};
|
|
|
|
SetData(proto);
|
|
}
|
|
} |