diff options
Diffstat (limited to 'node/keepdiceexecnode.h')
| -rw-r--r-- | node/keepdiceexecnode.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/node/keepdiceexecnode.h b/node/keepdiceexecnode.h new file mode 100644 index 0000000..28c637d --- /dev/null +++ b/node/keepdiceexecnode.h @@ -0,0 +1,17 @@ +#ifndef KEEPDICEEXECNODE_H +#define KEEPDICEEXECNODE_H + +#include "executionnode.h" + +class KeepDiceExecNode : public ExecutionNode +{ +public: + KeepDiceExecNode(); + + virtual void run(ExecutionNode *previous); + virtual void setDiceKeepNumber(quint64 ); +private: + quint64 m_numberOfDice; +}; + +#endif // KEEPDICEEXECNODE_H |