dungeon/src/BehaviourTreeMemSelector.h

13 lines
275 B
C
Raw Normal View History

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