summaryrefslogtreecommitdiff
path: root/editor/editor_export.h
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <rverschelde@gmail.com>2020-05-12 18:02:38 +0200
committerGitHub <noreply@github.com>2020-05-12 18:02:38 +0200
commit2231673d42a9f20c8778b068102ae46261a6fb69 (patch)
tree9d93f43c983398f96e6a5ae7f39d80559398402a /editor/editor_export.h
parent6dfea347b0f957e2689a127f025988f9aae1ab71 (diff)
parent3097c2da963fe355c81816a74824170b6dce697c (diff)
Merge pull request #37099 from Faless/js/debugger_4.0
WebSocket profiler for HTML5 platform [4.0]
Diffstat (limited to 'editor/editor_export.h')
-rw-r--r--editor/editor_export.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/editor/editor_export.h b/editor/editor_export.h
index f47fe9c95e..50d1ff66c6 100644
--- a/editor/editor_export.h
+++ b/editor/editor_export.h
@@ -270,6 +270,7 @@ public:
virtual Error export_zip(const Ref<EditorExportPreset> &p_preset, bool p_debug, const String &p_path, int p_flags = 0);
virtual void get_platform_features(List<String> *r_features) = 0;
virtual void resolve_platform_feature_priorities(const Ref<EditorExportPreset> &p_preset, Set<String> &p_features) = 0;
+ virtual String get_debug_protocol() const { return "tcp://"; }
EditorExportPlatform();
};