2022-08-28 10:54:34 +00:00
|
|
|
/* bt_composite.h */
|
|
|
|
|
|
|
|
#ifndef BT_COMPOSITE_H
|
|
|
|
#define BT_COMPOSITE_H
|
|
|
|
|
2022-08-31 15:05:25 +00:00
|
|
|
#include "../bt_task.h"
|
2022-08-28 10:54:34 +00:00
|
|
|
#include "core/object.h"
|
|
|
|
|
|
|
|
class BTComposite : public BTTask {
|
|
|
|
GDCLASS(BTComposite, BTTask);
|
|
|
|
|
|
|
|
public:
|
|
|
|
virtual String get_configuration_warning() const;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // BT_COMPOSITE_H
|