aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/node/jumpbackwardnode.h
blob: 4ea3d11a2aa5e0a60e68e65bb88d8700f387501b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#ifndef JUMPBACKWARDNODE_H
#define JUMPBACKWARDNODE_H

#include "executionnode.h"
#include "result/diceresult.h"
class JumpBackwardNode : public ExecutionNode
{
public:
	JumpBackwardNode();

	virtual void run(ExecutionNode* previous = NULL);

	/**
	 * @brief toString
	 * @return
	 */
	virtual QString toString() const;
	/**
	 * @brief getPriority
	 * @return
	 */
	virtual qint64 getPriority() const;
private:
    DiceResult* m_diceResult;

};

#endif // JUMPBACKWARDNODE_H