mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-03 04:36:03 +08:00
18 lines
539 B
C#
18 lines
539 B
C#
using EggLink.DanhengServer.GameServer.Game.ChessRogue.Modifier;
|
|
using EggLink.DanhengServer.Kcp;
|
|
using EggLink.DanhengServer.Proto;
|
|
|
|
namespace EggLink.DanhengServer.GameServer.Server.Packet.Send.RogueModifier;
|
|
|
|
public class PacketRogueModifierAddNotify : BasePacket
|
|
{
|
|
public PacketRogueModifierAddNotify(ChessRogueDiceModifierInstance modifier) : base(CmdIds.RogueModifierAddNotify)
|
|
{
|
|
var proto = new RogueModifierAddNotify
|
|
{
|
|
Modifier = modifier.ToProto()
|
|
};
|
|
|
|
SetData(proto);
|
|
}
|
|
} |