diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2023-04-26 12:15:29 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-26 12:15:29 +0200 |
commit | 8f7b09916d6560f2dfe0cd47d604884b10748113 (patch) | |
tree | aab450509b574b79666997c3bbb72f7e19ecbe42 /platform/web | |
parent | c16821e71b39c78ad2b0427c5f45c862c6d78328 (diff) | |
parent | 8a74d8438f5dee92927d953a7954ad3c3022cbd9 (diff) | |
download | redot-engine-8f7b09916d6560f2dfe0cd47d604884b10748113.tar.gz |
Merge pull request #76026 from YuriSizov/editor-running-up-that-gui
Extract editor run toolbar into its own component
Diffstat (limited to 'platform/web')
-rw-r--r-- | platform/web/export/export.cpp | 1 | ||||
-rw-r--r-- | platform/web/export/export_plugin.cpp | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/platform/web/export/export.cpp b/platform/web/export/export.cpp index 54d9774da5..80c29024a8 100644 --- a/platform/web/export/export.cpp +++ b/platform/web/export/export.cpp @@ -31,6 +31,7 @@ #include "export.h" #include "editor/editor_settings.h" +#include "editor/export/editor_export.h" #include "export_plugin.h" void register_web_exporter_types() { diff --git a/platform/web/export/export_plugin.cpp b/platform/web/export/export_plugin.cpp index 7a62cd2a4a..876efdf864 100644 --- a/platform/web/export/export_plugin.cpp +++ b/platform/web/export/export_plugin.cpp @@ -33,6 +33,7 @@ #include "core/config/project_settings.h" #include "editor/editor_scale.h" #include "editor/editor_settings.h" +#include "editor/export/editor_export.h" #include "platform/web/logo_svg.gen.h" #include "platform/web/run_icon_svg.gen.h" |