27 lines
680 B
C++
27 lines
680 B
C++
/**
|
|
* bt_comment.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.
|
|
* =============================================================================
|
|
*/
|
|
|
|
#ifndef BT_COMMENT_H
|
|
#define BT_COMMENT_H
|
|
|
|
#include "bt_task.h"
|
|
|
|
class BTComment : public BTTask {
|
|
GDCLASS(BTComment, BTTask);
|
|
TASK_CATEGORY(Utility);
|
|
|
|
public:
|
|
virtual Ref<BTTask> clone() const override;
|
|
virtual PackedStringArray get_configuration_warnings() override;
|
|
};
|
|
|
|
#endif // BT_COMMENT_H
|