summaryrefslogtreecommitdiffstats
path: root/editor/export/editor_export_platform.h
diff options
context:
space:
mode:
authorAaron Franke <arnfranke@yahoo.com>2023-09-07 12:21:34 -0500
committerAaron Franke <arnfranke@yahoo.com>2023-09-07 12:28:09 -0500
commitc1c0ee3faf1d095b24060bbfe9582b2cafee53e1 (patch)
tree27ac991ae000ba6e42f3253817125a4d7a0165e0 /editor/export/editor_export_platform.h
parent0bca4242392992840b0b891acde6422c49712e3e (diff)
downloadredot-engine-c1c0ee3faf1d095b24060bbfe9582b2cafee53e1.tar.gz
Expose EditorExportPlatform::get_os_name()
Diffstat (limited to 'editor/export/editor_export_platform.h')
-rw-r--r--editor/export/editor_export_platform.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/editor/export/editor_export_platform.h b/editor/export/editor_export_platform.h
index 5f5702026c..0b922cc6c8 100644
--- a/editor/export/editor_export_platform.h
+++ b/editor/export/editor_export_platform.h
@@ -49,6 +49,9 @@ const String ENV_SCRIPT_ENCRYPTION_KEY = "GODOT_SCRIPT_ENCRYPTION_KEY";
class EditorExportPlatform : public RefCounted {
GDCLASS(EditorExportPlatform, RefCounted);
+protected:
+ static void _bind_methods();
+
public:
typedef Error (*EditorExportSaveFunction)(void *p_userdata, const String &p_path, const Vector<uint8_t> &p_data, int p_file, int p_total, const Vector<String> &p_enc_in_filters, const Vector<String> &p_enc_ex_filters, const Vector<uint8_t> &p_key);
typedef Error (*EditorExportSaveSharedObject)(void *p_userdata, const SharedObject &p_so);