diff --git a/src/runner/pythonrunner.cpp b/src/runner/pythonrunner.cpp index 2978ab8..6d8984a 100644 --- a/src/runner/pythonrunner.cpp +++ b/src/runner/pythonrunner.cpp @@ -831,6 +831,9 @@ BOOST_PYTHON_MODULE(mobase) .def("origin", bpy::pure_virtual(&MOBase::IPluginList::origin)) .def("onRefreshed", bpy::pure_virtual(&MOBase::IPluginList::onRefreshed)) .def("onPluginMoved", bpy::pure_virtual(&MOBase::IPluginList::onPluginMoved)) + .def("pluginNames", bpy::pure_virtual(&MOBase::IPluginList::pluginNames)) + .def("setState", bpy::pure_virtual(&MOBase::IPluginList::setState)) + .def("setLoadOrder", bpy::pure_virtual(&MOBase::IPluginList::setLoadOrder)) ; bpy::to_python_converter>();