diff options
author | trollodel <33117082+trollodel@users.noreply.github.com> | 2022-11-11 20:12:48 +0100 |
---|---|---|
committer | trollodel <33117082+trollodel@users.noreply.github.com> | 2022-11-11 20:25:51 +0100 |
commit | ba9e619b51b7c1009c9a3fa464343ad446c5d3ba (patch) | |
tree | e9a5e8af079e44add7ab260f19687f22009a1102 /editor/plugins/cpu_particles_2d_editor_plugin.h | |
parent | e25d9281d4f6f0b5b4d972b25cddaa1009ad1d26 (diff) | |
download | redot-engine-ba9e619b51b7c1009c9a3fa464343ad446c5d3ba.tar.gz |
Use forward-declarations in EditorPlugin where possible
Diffstat (limited to 'editor/plugins/cpu_particles_2d_editor_plugin.h')
-rw-r--r-- | editor/plugins/cpu_particles_2d_editor_plugin.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/editor/plugins/cpu_particles_2d_editor_plugin.h b/editor/plugins/cpu_particles_2d_editor_plugin.h index 06ca208463..694162588b 100644 --- a/editor/plugins/cpu_particles_2d_editor_plugin.h +++ b/editor/plugins/cpu_particles_2d_editor_plugin.h @@ -36,10 +36,13 @@ #include "scene/2d/cpu_particles_2d.h" #include "scene/gui/box_container.h" -class EditorPlugin; +class CheckBox; +class ConfirmationDialog; class SpinBox; class EditorFileDialog; class EditorUndoRedoManager; +class MenuButton; +class OptionButton; class CPUParticles2DEditorPlugin : public EditorPlugin { GDCLASS(CPUParticles2DEditorPlugin, EditorPlugin); |