limboai/bt/composites/bt_composite.h

16 lines
290 B
C++

/* bt_composite.h */
#ifndef BT_COMPOSITE_H
#define BT_COMPOSITE_H
#include "../bt_task.h"
#include "core/object/object.h"
class BTComposite : public BTTask {
GDCLASS(BTComposite, BTTask);
public:
virtual String get_configuration_warning() const override;
};
#endif // BT_COMPOSITE_H