/** * 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. * ============================================================================= */ #ifndef BT_ALWAYS_SUCCEED_H #define BT_ALWAYS_SUCCEED_H #include "bt_decorator.h" #include "core/object/object.h" class BTAlwaysSucceed : public BTDecorator { GDCLASS(BTAlwaysSucceed, BTDecorator); protected: virtual int _tick(double p_delta) override; }; #endif // BT_ALWAYS_SUCCEED_H