16 lines
283 B
C
16 lines
283 B
C
|
/* bt_always_fail.h */
|
||
|
|
||
|
#ifndef BT_ALWAYS_FAIL_H
|
||
|
#define BT_ALWAYS_FAIL_H
|
||
|
|
||
|
#include "bt_decorator.h"
|
||
|
#include "core/object.h"
|
||
|
|
||
|
class BTAlwaysFail : public BTDecorator {
|
||
|
GDCLASS(BTAlwaysFail, BTDecorator);
|
||
|
|
||
|
protected:
|
||
|
virtual int _tick(float p_delta);
|
||
|
};
|
||
|
|
||
|
#endif // BT_ALWAYS_FAIL_H
|