2023-08-18 19:38:28 +00:00
|
|
|
/**
|
|
|
|
* bt_comment.h
|
|
|
|
* =============================================================================
|
2024-03-21 20:38:57 +00:00
|
|
|
* Copyright 2021-2024 Serhii Snitsaruk
|
2023-08-18 19:38:28 +00:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
* =============================================================================
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef BT_COMMENT_H
|
|
|
|
#define BT_COMMENT_H
|
|
|
|
|
|
|
|
#include "bt_task.h"
|
|
|
|
|
|
|
|
class BTComment : public BTTask {
|
|
|
|
GDCLASS(BTComment, BTTask);
|
2023-08-28 11:22:23 +00:00
|
|
|
TASK_CATEGORY(Utility);
|
2023-08-18 19:38:28 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
virtual Ref<BTTask> clone() const override;
|
2024-01-06 20:04:34 +00:00
|
|
|
virtual PackedStringArray get_configuration_warnings() override;
|
2023-08-18 19:38:28 +00:00
|
|
|
};
|
|
|
|
|
2024-01-13 16:10:42 +00:00
|
|
|
#endif // BT_COMMENT_H
|