2023-07-21 09:50:06 +00:00
|
|
|
/**
|
|
|
|
* bt_always_succeed.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-28 11:56:43 +00:00
|
|
|
|
|
|
|
#ifndef BT_ALWAYS_SUCCEED_H
|
|
|
|
#define BT_ALWAYS_SUCCEED_H
|
|
|
|
|
|
|
|
#include "bt_decorator.h"
|
2023-07-20 16:35:36 +00:00
|
|
|
|
2022-12-15 07:26:52 +00:00
|
|
|
#include "core/object/object.h"
|
2022-08-28 11:56:43 +00:00
|
|
|
|
|
|
|
class BTAlwaysSucceed : public BTDecorator {
|
|
|
|
GDCLASS(BTAlwaysSucceed, BTDecorator);
|
|
|
|
|
|
|
|
protected:
|
2023-04-10 08:08:11 +00:00
|
|
|
virtual int _tick(double p_delta) override;
|
2022-08-28 11:56:43 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // BT_ALWAYS_SUCCEED_H
|