| 496 | } |
| 497 | |
| 498 | int EditorData::get_editor_plugin_count() const { |
| 499 | return editor_plugins.size(); |
| 500 | } |
| 501 | |
| 502 | EditorPlugin *EditorData::get_editor_plugin(int p_idx) { |
| 503 | ERR_FAIL_INDEX_V(p_idx, editor_plugins.size(), nullptr); |
no test coverage detected