aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/node/explosedicenode.h
diff options
context:
space:
mode:
Diffstat (limited to 'node/explosedicenode.h')
-rw-r--r--node/explosedicenode.h28
1 files changed, 0 insertions, 28 deletions
diff --git a/node/explosedicenode.h b/node/explosedicenode.h
deleted file mode 100644
index 6b582a3..0000000
--- a/node/explosedicenode.h
+++ /dev/null
@@ -1,28 +0,0 @@
-#ifndef EXPLOSEDICENODE_H
-#define EXPLOSEDICENODE_H
-
-#include "executionnode.h"
-#include "result/diceresult.h"
-#include "validator.h"
-#include <QDebug>
-
-/**
- * @brief The ExploseDiceNode class explose dice while is valid by the validator.
- */
-class ExploseDiceNode : public ExecutionNode
-{
-public:
- ExploseDiceNode();
- virtual ~ExploseDiceNode();
- virtual void run(ExecutionNode* previous = nullptr);
- virtual void setValidator(Validator* );
- virtual QString toString(bool )const;
- virtual qint64 getPriority() const;
-
- virtual ExecutionNode *getCopy() const;
-protected:
- DiceResult* m_diceResult;
- Validator* m_validator;
-};
-
-#endif // EXPLOSEDICENODE_H