summaryrefslogtreecommitdiffstats
path: root/editor/plugins/text_editor.h
diff options
context:
space:
mode:
authorlawnjelly <lawnjelly@gmail.com>2023-05-17 16:22:26 +0100
committerlawnjelly <lawnjelly@gmail.com>2023-06-06 15:36:51 +0100
commitb69c8b47916e4b3511c1aeff254ebfa6deef37ba (patch)
tree121f1601353f788375749abd834bfb5515afa843 /editor/plugins/text_editor.h
parent543750a1b3f5696f9ba8e91cb49dc7db05d2ae62 (diff)
downloadredot-engine-b69c8b47916e4b3511c1aeff254ebfa6deef37ba.tar.gz
Single Compilation Unit build.
Adds support for simple SCU build (DEV_ENABLED only). This speeds up compilation by compiling multiple cpp files within a single translation unit.
Diffstat (limited to 'editor/plugins/text_editor.h')
-rw-r--r--editor/plugins/text_editor.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/editor/plugins/text_editor.h b/editor/plugins/text_editor.h
index 0c218e9e0c..d1aa2a9047 100644
--- a/editor/plugins/text_editor.h
+++ b/editor/plugins/text_editor.h
@@ -38,6 +38,8 @@
class TextEditor : public ScriptEditorBase {
GDCLASS(TextEditor, ScriptEditorBase);
+ static ScriptEditorBase *create_editor(const Ref<Resource> &p_resource);
+
private:
CodeTextEditor *code_editor = nullptr;