limboai/bt/conditions/bt_condition.h

26 lines
663 B
C
Raw Normal View History

/**
* bt_condition.h
* =============================================================================
* Copyright 2021-2023 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_CONDITION_H
#define BT_CONDITION_H
2022-08-31 15:05:25 +00:00
#include "../bt_task.h"
2023-07-20 16:35:36 +00:00
#include "core/object/object.h"
2022-08-28 10:54:34 +00:00
class BTCondition : public BTTask {
GDCLASS(BTCondition, BTTask);
public:
virtual PackedStringArray get_configuration_warnings() const override;
2022-08-28 10:54:34 +00:00
};
#endif // BT_CONDITION_H