summaryrefslogtreecommitdiffstats
path: root/platform/javascript/api/javascript_tools_editor_plugin.h
diff options
context:
space:
mode:
authorRémi Verschelde <remi@verschelde.fr>2022-08-29 13:00:32 +0200
committerGitHub <noreply@github.com>2022-08-29 13:00:32 +0200
commit322c812231fa28e72a7a316088a1dd6775e96f94 (patch)
tree0ee981f72cd500614c4079f0e2b6f731abe4a4ee /platform/javascript/api/javascript_tools_editor_plugin.h
parent583c0c4897ca7ba669ab78d397fc894b718613ce (diff)
parentd20b32186fc192f5e527a1211291b0cb293f4e66 (diff)
downloadredot-engine-322c812231fa28e72a7a316088a1dd6775e96f94.tar.gz
Merge pull request #65023 from Faless/js/4.x_is_web
Diffstat (limited to 'platform/javascript/api/javascript_tools_editor_plugin.h')
-rw-r--r--platform/javascript/api/javascript_tools_editor_plugin.h58
1 files changed, 0 insertions, 58 deletions
diff --git a/platform/javascript/api/javascript_tools_editor_plugin.h b/platform/javascript/api/javascript_tools_editor_plugin.h
deleted file mode 100644
index cbf5f49497..0000000000
--- a/platform/javascript/api/javascript_tools_editor_plugin.h
+++ /dev/null
@@ -1,58 +0,0 @@
-/*************************************************************************/
-/* javascript_tools_editor_plugin.h */
-/*************************************************************************/
-/* This file is part of: */
-/* GODOT ENGINE */
-/* https://godotengine.org */
-/*************************************************************************/
-/* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur. */
-/* Copyright (c) 2014-2022 Godot Engine contributors (cf. AUTHORS.md). */
-/* */
-/* Permission is hereby granted, free of charge, to any person obtaining */
-/* a copy of this software and associated documentation files (the */
-/* "Software"), to deal in the Software without restriction, including */
-/* without limitation the rights to use, copy, modify, merge, publish, */
-/* distribute, sublicense, and/or sell copies of the Software, and to */
-/* permit persons to whom the Software is furnished to do so, subject to */
-/* the following conditions: */
-/* */
-/* The above copyright notice and this permission notice shall be */
-/* included in all copies or substantial portions of the Software. */
-/* */
-/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
-/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
-/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
-/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
-/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
-/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
-/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
-/*************************************************************************/
-
-#ifndef JAVASCRIPT_TOOLS_EDITOR_PLUGIN_H
-#define JAVASCRIPT_TOOLS_EDITOR_PLUGIN_H
-
-#if defined(TOOLS_ENABLED) && defined(JAVASCRIPT_ENABLED)
-#include "core/io/zip_io.h"
-#include "editor/editor_plugin.h"
-
-class JavaScriptToolsEditorPlugin : public EditorPlugin {
- GDCLASS(JavaScriptToolsEditorPlugin, EditorPlugin);
-
-private:
- void _zip_file(String p_path, String p_base_path, zipFile p_zip);
- void _zip_recursive(String p_path, String p_base_path, zipFile p_zip);
- void _download_zip(Variant p_v);
-
-public:
- static void initialize();
-
- JavaScriptToolsEditorPlugin();
-};
-#else
-class JavaScriptToolsEditorPlugin {
-public:
- static void initialize() {}
-};
-#endif
-
-#endif // JAVASCRIPT_TOOLS_EDITOR_PLUGIN_H