mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-03 04:36:03 +08:00
22 lines
647 B
C#
22 lines
647 B
C#
using EggLink.DanhengServer.GameServer.Game.Rogue;
|
|
using EggLink.DanhengServer.Kcp;
|
|
using EggLink.DanhengServer.Proto;
|
|
|
|
namespace EggLink.DanhengServer.GameServer.Server.Packet.Send.Rogue;
|
|
|
|
public class PacketSyncRogueVirtualItemScNotify : BasePacket
|
|
{
|
|
public PacketSyncRogueVirtualItemScNotify(BaseRogueInstance instance) : base(
|
|
CmdIds.SyncRogueVirtualItemInfoScNotify)
|
|
{
|
|
var proto = new SyncRogueVirtualItemInfoScNotify
|
|
{
|
|
RogueVirtualItemInfo = new RogueVirtualItemInfo
|
|
{
|
|
//RogueMoney = (uint)instance.CurMoney,
|
|
}
|
|
};
|
|
|
|
SetData(proto);
|
|
}
|
|
} |