limboai/bt/tasks/bt_composite.h

28 lines
666 B
C
Raw Normal View History

/**
* bt_composite.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.
* =============================================================================
*/
2022-08-28 10:54:34 +00:00
#ifndef BT_COMPOSITE_H
#define BT_COMPOSITE_H
2023-08-15 15:49:13 +00:00
#include "bt_task.h"
2022-08-28 10:54:34 +00:00
class BTComposite : public BTTask {
GDCLASS(BTComposite, BTTask);
protected:
static void _bind_methods() {}
2022-08-28 10:54:34 +00:00
public:
virtual PackedStringArray get_configuration_warnings() override;
2022-08-28 10:54:34 +00:00
};
2024-01-13 16:10:42 +00:00
#endif // BT_COMPOSITE_H