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

13 lines
275 B
C++

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