diff options
Diffstat (limited to 'node/rerolldicenode.h')
| -rw-r--r-- | node/rerolldicenode.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/node/rerolldicenode.h b/node/rerolldicenode.h index f566d77..c999dda 100644 --- a/node/rerolldicenode.h +++ b/node/rerolldicenode.h @@ -58,10 +58,14 @@ public: */ virtual ExecutionNode* getCopy() const; + ExecutionNode *getInstruction() const; + void setInstruction(ExecutionNode *instruction); + private: - DiceResult* m_diceResult; + DiceResult* m_diceResult = nullptr; bool m_adding; - Validator* m_validator; + Validator* m_validator = nullptr; + ExecutionNode* m_instruction = nullptr; }; #endif // REROLLDICENODE_H |