diff options
author | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2023-03-09 10:41:52 +0200 |
---|---|---|
committer | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2023-04-19 08:35:59 +0300 |
commit | 0088981c4048c1779980a694986d715b11be1a45 (patch) | |
tree | ed8c5f309ad767a7b4e35b558fd65ee081298023 /platform/ios/export/export.cpp | |
parent | 1b4b8934e080ec5300c78547527517f4a5b733e9 (diff) | |
download | redot-engine-0088981c4048c1779980a694986d715b11be1a45.tar.gz |
[Export] Add readable descriptions and validation warnings to the export options.
Diffstat (limited to 'platform/ios/export/export.cpp')
-rw-r--r-- | platform/ios/export/export.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/platform/ios/export/export.cpp b/platform/ios/export/export.cpp index e35383206f..f4b90d8883 100644 --- a/platform/ios/export/export.cpp +++ b/platform/ios/export/export.cpp @@ -33,6 +33,10 @@ #include "editor/export/editor_export.h" #include "export_plugin.h" +void register_ios_exporter_types() { + GDREGISTER_VIRTUAL_CLASS(EditorExportPlatformIOS); +} + void register_ios_exporter() { Ref<EditorExportPlatformIOS> platform; platform.instantiate(); |