| 150 | } |
| 151 | |
| 152 | int EditorExport::get_export_platform_count() { |
| 153 | return export_platforms.size(); |
| 154 | } |
| 155 | |
| 156 | Ref<EditorExportPlatform> EditorExport::get_export_platform(int p_idx) { |
| 157 | ERR_FAIL_INDEX_V(p_idx, export_platforms.size(), Ref<EditorExportPlatform>()); |
no test coverage detected