blob: a11c2b384399e9d7b0ecf6824f888c782edd25bc (
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
|
#include "helpnode.h"
HelpNode::HelpNode()
{
}
void HelpNode::run(ExecutionNode* previous)
{
if(NULL != previous)
{
}
else
{
}
}
QString HelpNode::toString()const
{
return QObject::tr("see full documentation at: <a href=\"https://github.com/obiwankennedy/DiceParser/blob/master/HelpMe.md\">https://github.com/obiwankennedy/DiceParser/blob/master/HelpMe.md</a>");
}
qint64 HelpNode::getPriority() const
{
return 0;
}
|