mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-02 20:26:03 +08:00
21 lines
584 B
C#
21 lines
584 B
C#
using EggLink.DanhengServer.Kcp;
|
|
using EggLink.DanhengServer.Proto;
|
|
|
|
namespace EggLink.DanhengServer.GameServer.Server.Packet.Send.GridFight;
|
|
|
|
public class PacketGridFightUseOrbNotify : BasePacket
|
|
{
|
|
public PacketGridFightUseOrbNotify(uint uniqueId, List<GridFightDropItemInfo> drops) : base(CmdIds.GridFightUseOrbNotify)
|
|
{
|
|
var proto = new GridFightUseOrbNotify
|
|
{
|
|
DropItemList = new GridFightDropInfo
|
|
{
|
|
DropItemList = { drops }
|
|
},
|
|
OrbUniqueId = uniqueId
|
|
};
|
|
|
|
SetData(proto);
|
|
}
|
|
} |