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/groups_editor.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/groups_editor.h')
-rw-r--r-- | editor/groups_editor.h | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/editor/groups_editor.h b/editor/groups_editor.h index cd9d458f4b..27322b63da 100644 --- a/editor/groups_editor.h +++ b/editor/groups_editor.h @@ -31,13 +31,12 @@ #ifndef GROUPS_EDITOR_H #define GROUPS_EDITOR_H -#include "editor/scene_tree_editor.h" -#include "scene/gui/button.h" #include "scene/gui/dialogs.h" -#include "scene/gui/item_list.h" -#include "scene/gui/line_edit.h" -#include "scene/gui/popup.h" -#include "scene/gui/tree.h" + +class Button; +class LineEdit; +class Tree; +class TreeItem; class GroupDialog : public AcceptDialog { GDCLASS(GroupDialog, AcceptDialog); |