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

12 lines
274 B
C++

#pragma once
#include "BehaviourTreeNode.h"
class BehaviourTreeMemSequencer :
public BehaviourTreeNode {
int currentnode;
public:
BehaviourTreeMemSequencer(BehaviourTreeNode* parent);
void open(BTTick* tick);
BehaviourTreeStatus tick(BTTick* tick);
};