diff options
author | Yuri Sizov <yuris@humnom.net> | 2023-04-07 18:59:49 +0200 |
---|---|---|
committer | Yuri Sizov <yuris@humnom.net> | 2023-04-07 18:59:49 +0200 |
commit | 4154039832cb79459975e46a3007c83c4864ccb3 (patch) | |
tree | 53babcd74fa2e04315e57c4be0be75c2f65e3993 /editor/editor_properties_array_dict.h | |
parent | c151d3231f8e5d207f64055c60c70967dd5351b5 (diff) | |
download | redot-engine-4154039832cb79459975e46a3007c83c4864ccb3.tar.gz |
Improve includes of EditorNode (and everything else)
Also start organizing editor-specific GUI components
into a dedicated folder, `editor/gui`.
Also move `editor_file_server` next to the rest of debugger classes.
Diffstat (limited to 'editor/editor_properties_array_dict.h')
-rw-r--r-- | editor/editor_properties_array_dict.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/editor/editor_properties_array_dict.h b/editor/editor_properties_array_dict.h index 3b880c60a8..2ca1931f85 100644 --- a/editor/editor_properties_array_dict.h +++ b/editor/editor_properties_array_dict.h @@ -33,9 +33,10 @@ #include "editor/editor_inspector.h" #include "editor/editor_locale_dialog.h" -#include "editor/editor_spin_slider.h" #include "editor/filesystem_dock.h" -#include "scene/gui/button.h" + +class Button; +class EditorSpinSlider; class EditorPropertyArrayObject : public RefCounted { GDCLASS(EditorPropertyArrayObject, RefCounted); |