diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2022-02-12 09:46:02 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-12 09:46:02 +0100 |
commit | 7a7fabe4f6d66ffb0c0fbbaf1696e67456c383d7 (patch) | |
tree | 3fdf2f5b49b19c257d97f1859115127be61046a9 /platform/javascript/export/export_plugin.cpp | |
parent | d05f0f15f30e71c1fdc950b037dfedb109780b62 (diff) | |
parent | b396fd4eef36d23fa7325b13a4b8e120f1f000c9 (diff) | |
download | redot-engine-7a7fabe4f6d66ffb0c0fbbaf1696e67456c383d7.tar.gz |
Merge pull request #57641 from Geometror/compilation-time-improvements-1
Diffstat (limited to 'platform/javascript/export/export_plugin.cpp')
-rw-r--r-- | platform/javascript/export/export_plugin.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/platform/javascript/export/export_plugin.cpp b/platform/javascript/export/export_plugin.cpp index d4c198d631..8a1360e421 100644 --- a/platform/javascript/export/export_plugin.cpp +++ b/platform/javascript/export/export_plugin.cpp @@ -30,6 +30,9 @@ #include "export_plugin.h" +#include "core/config/project_settings.h" +#include "editor/editor_node.h" + Error EditorExportPlatformJavaScript::_extract_template(const String &p_template, const String &p_dir, const String &p_name, bool pwa) { FileAccess *src_f = nullptr; zlib_filefunc_def io = zipio_create_io_from_file(&src_f); |