| 9002 | } |
| 9003 | |
| 9004 | void EditorPluginList::add_plugin(EditorPlugin *p_plugin) { |
| 9005 | ERR_FAIL_COND(plugins_list.has(p_plugin)); |
| 9006 | plugins_list.push_back(p_plugin); |
| 9007 | } |
| 9008 | |
| 9009 | void EditorPluginList::remove_plugin(EditorPlugin *p_plugin) { |
| 9010 | plugins_list.erase(p_plugin); |
no test coverage detected