aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/node/keepdiceexecnode.h
diff options
context:
space:
mode:
Diffstat (limited to 'node/keepdiceexecnode.h')
-rw-r--r--node/keepdiceexecnode.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/node/keepdiceexecnode.h b/node/keepdiceexecnode.h
index 49680f2..c4aa5c5 100644
--- a/node/keepdiceexecnode.h
+++ b/node/keepdiceexecnode.h
@@ -34,13 +34,15 @@ public:
virtual ~KeepDiceExecNode();
virtual void run(ExecutionNode* previous);
- virtual void setDiceKeepNumber(qint64);
+ //virtual void setDiceKeepNumber(qint64);
+ virtual void setDiceKeepNumber(ExecutionNode* valueNode );
virtual QString toString(bool) const;
virtual qint64 getPriority() const;
virtual ExecutionNode* getCopy() const;
private:
qint64 m_numberOfDice= 0;
+ ExecutionNode* m_numberOfDiceNode;
DiceResult* m_diceResult;
};