mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-02 20:26:03 +08:00
Implement Gold And Gears Dice Surface
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user