dungeon/src/BehaviourTreeSequencer.h

10 lines
220 B
C
Raw Normal View History

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