dungeon/src/IfHealthBelow.h
2017-09-17 14:45:57 +02:00

12 lines
258 B
C++

#pragma once
#include "BehaviourTreeNode.h"
class IfHealthBelow :
public BehaviourTreeNode {
int healthBelow;
public:
IfHealthBelow(BehaviourTreeNode* root, int healthBelow);
~IfHealthBelow();
BehaviourTreeStatus tick(BTTick* tick);
};