limboai/bt/conditions/bt_condition.h

16 lines
290 B
C
Raw Normal View History

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