limboai/bt/actions/bt_fail.h

17 lines
252 B
C
Raw Normal View History

2022-08-29 11:30:53 +00:00
/* bt_fail.h */
#ifndef BT_FAIL_H
#define BT_FAIL_H
#include "bt_action.h"
2023-07-20 16:35:36 +00:00
#include "core/object/object.h"
2022-08-29 11:30:53 +00:00
class BTFail : public BTAction {
GDCLASS(BTFail, BTAction);
protected:
virtual int _tick(double p_delta) override;
2022-08-29 11:30:53 +00:00
};
#endif // BT_FAIL_H