2022-08-28 10:54:34 +00:00
|
|
|
/* bt_action.h */
|
|
|
|
|
|
|
|
#ifndef BT_ACTION_H
|
|
|
|
#define BT_ACTION_H
|
|
|
|
|
2022-08-31 15:05:25 +00:00
|
|
|
#include "../bt_task.h"
|
2022-12-15 07:26:52 +00:00
|
|
|
#include "core/object/object.h"
|
2022-08-28 10:54:34 +00:00
|
|
|
|
|
|
|
class BTAction : public BTTask {
|
|
|
|
GDCLASS(BTAction, BTTask);
|
|
|
|
|
|
|
|
public:
|
2022-12-15 07:26:52 +00:00
|
|
|
virtual String get_configuration_warning() const override;
|
2022-08-28 10:54:34 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // BT_ACTION_H
|