26 lines
661 B
C++
26 lines
661 B
C++
/**
|
|
* bt_always_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.
|
|
* =============================================================================
|
|
*/
|
|
|
|
#ifndef BT_ALWAYS_FAIL_H
|
|
#define BT_ALWAYS_FAIL_H
|
|
|
|
#include "bt_decorator.h"
|
|
|
|
#include "core/object/object.h"
|
|
|
|
class BTAlwaysFail : public BTDecorator {
|
|
GDCLASS(BTAlwaysFail, BTDecorator);
|
|
|
|
protected:
|
|
virtual int _tick(double p_delta) override;
|
|
};
|
|
|
|
#endif // BT_ALWAYS_FAIL_H
|