| 312 | } |
| 313 | |
| 314 | void EditorData::get_editor_breakpoints(List<String> *p_breakpoints) { |
| 315 | for (int i = 0; i < editor_plugins.size(); i++) { |
| 316 | editor_plugins[i]->get_breakpoints(p_breakpoints); |
| 317 | } |
| 318 | } |
| 319 | |
| 320 | Dictionary EditorData::get_editor_plugin_states() const { |
| 321 | Dictionary metadata; |
no test coverage detected