11 lines
208 B
C
11 lines
208 B
C
|
#pragma once
|
||
|
#include "BehaviourTreeNode.h"
|
||
|
class RestNode :
|
||
|
public BehaviourTreeNode {
|
||
|
public:
|
||
|
RestNode(BehaviourTreeNode* parent);
|
||
|
~RestNode();
|
||
|
BehaviourTreeStatus tick(BTTick* tick);
|
||
|
};
|
||
|
|