limboai/bt/tasks/bt_composite.h

25 lines
622 B
C++

/**
* bt_composite.h
* =============================================================================
* 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_COMPOSITE_H
#define BT_COMPOSITE_H
#include "bt_task.h"
class BTComposite : public BTTask {
GDCLASS(BTComposite, BTTask);
public:
virtual PackedStringArray get_configuration_warnings() override;
};
#endif // BT_COMPOSITE_H