aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/node/rerolldicenode.h
diff options
context:
space:
mode:
Diffstat (limited to 'node/rerolldicenode.h')
-rw-r--r--node/rerolldicenode.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/node/rerolldicenode.h b/node/rerolldicenode.h
index 90dc81a..609fcf3 100644
--- a/node/rerolldicenode.h
+++ b/node/rerolldicenode.h
@@ -12,11 +12,11 @@ class RerollDiceNode : public ExecutionNode
public:
enum ReRollMode {EQUAL,LESSER,GREATER};
- RerollDiceNode(ExecutionNode* previous);
+ RerollDiceNode();
- virtual void run();
+ virtual void run(ExecutionNode* previous);
private:
- ExecutionNode* m_previous;
+ qint64 m_value;
};
#endif // REROLLDICENODE_H