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

10 lines
220 B
C++

#pragma once
#include "BehaviourTreeNode.h"
class BehaviourTreeSequencer :
public BehaviourTreeNode {
public:
BehaviourTreeSequencer(BehaviourTreeNode* parent);
BehaviourTreeStatus tick(BTTick* tick);
};