2023-07-21 09:50:06 +00:00
|
|
|
/**
|
|
|
|
* bt_fail.h
|
|
|
|
* =============================================================================
|
|
|
|
* Copyright 2021-2023 Serhii Snitsaruk
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by an MIT-style
|
|
|
|
* license that can be found in the LICENSE file or at
|
|
|
|
* https://opensource.org/licenses/MIT.
|
|
|
|
* =============================================================================
|
|
|
|
*/
|
2022-08-29 11:30:53 +00:00
|
|
|
|
|
|
|
#ifndef BT_FAIL_H
|
|
|
|
#define BT_FAIL_H
|
|
|
|
|
2023-08-15 15:49:13 +00:00
|
|
|
#include "../bt_action.h"
|
2022-08-29 11:30:53 +00:00
|
|
|
|
|
|
|
class BTFail : public BTAction {
|
|
|
|
GDCLASS(BTFail, BTAction);
|
2023-08-28 11:22:23 +00:00
|
|
|
TASK_CATEGORY(Utility);
|
2022-08-29 11:30:53 +00:00
|
|
|
|
|
|
|
protected:
|
2023-09-19 11:43:26 +00:00
|
|
|
virtual Status _tick(double p_delta) override;
|
2022-08-29 11:30:53 +00:00
|
|
|
};
|
|
|
|
|
2024-01-13 16:10:42 +00:00
|
|
|
#endif // BT_FAIL_H
|