limboai/bt/tasks/decorators/bt_invert.h

28 lines
668 B
C
Raw Normal View History

/**
* bt_invert.h
* =============================================================================
2024-03-21 20:38:57 +00:00
* Copyright 2021-2024 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_INVERT_H
#define BT_INVERT_H
2023-08-15 15:49:13 +00:00
#include "../bt_decorator.h"
class BTInvert : public BTDecorator {
GDCLASS(BTInvert, BTDecorator);
TASK_CATEGORY(Decorators);
protected:
static void _bind_methods() {}
virtual Status _tick(double p_delta) override;
};
2024-01-13 16:10:42 +00:00
#endif // BT_INVERT_H