dungeon/src/BehaviourTreeSelector.h

11 lines
220 B
C
Raw Permalink Normal View History

2017-09-17 13:43:13 +02:00
#pragma once
#include "BehaviourTreeNode.h"
class BehaviourTreeSelector :
public BehaviourTreeNode {
public:
BehaviourTreeSelector(BehaviourTreeNode* parent);
BehaviourTreeStatus tick(BTTick* tick);
};