diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-08-30 09:58:52 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-08-30 09:58:52 +0200 |
commit | 66dd06837ccd427201e1d591f069e44930eb628e (patch) | |
tree | 4b9f779539050e33c088b8b6aa02a9a15a5eddcd /editor/plugins/script_editor_plugin.h | |
parent | d5385491f6a758759f88a26ed76786b03b191886 (diff) | |
parent | 07e986f728bea30787a2411a11d64c158e640015 (diff) | |
download | redot-engine-66dd06837ccd427201e1d591f069e44930eb628e.tar.gz |
Merge pull request #90782 from bruvzg/export_platform_extension
Allow adding custom export platforms using scripts / GDExtension.
Diffstat (limited to 'editor/plugins/script_editor_plugin.h')
-rw-r--r-- | editor/plugins/script_editor_plugin.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/editor/plugins/script_editor_plugin.h b/editor/plugins/script_editor_plugin.h index 66885790a7..e0fac5d0c6 100644 --- a/editor/plugins/script_editor_plugin.h +++ b/editor/plugins/script_editor_plugin.h @@ -539,6 +539,7 @@ public: _FORCE_INLINE_ bool edit(const Ref<Resource> &p_resource, bool p_grab_focus = true) { return edit(p_resource, -1, 0, p_grab_focus); } bool edit(const Ref<Resource> &p_resource, int p_line, int p_col, bool p_grab_focus = true); + Vector<String> _get_breakpoints(); void get_breakpoints(List<String> *p_breakpoints); PackedStringArray get_unsaved_scripts() const; |