2022-08-29 11:30:53 +00:00
|
|
|
/* bt_fail.h */
|
|
|
|
|
|
|
|
#ifndef BT_FAIL_H
|
|
|
|
#define BT_FAIL_H
|
|
|
|
|
|
|
|
#include "bt_action.h"
|
2022-12-15 07:26:52 +00:00
|
|
|
#include "core/object/object.h"
|
2022-08-29 11:30:53 +00:00
|
|
|
|
|
|
|
class BTFail : public BTAction {
|
|
|
|
GDCLASS(BTFail, BTAction);
|
|
|
|
|
|
|
|
protected:
|
2022-12-15 07:26:52 +00:00
|
|
|
virtual int _tick(float p_delta) override;
|
2022-08-29 11:30:53 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // BT_FAIL_H
|