We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be578cc commit 5638a5eCopy full SHA for 5638a5e
1 file changed
src/mobase/wrappers/basic_classes.cpp
@@ -814,7 +814,9 @@ namespace mo2::python {
814
py::class_<IInstanceManager>(m, "IInstanceManager")
815
.def("currentInstance", &IInstanceManager::currentInstance,
816
py::return_value_policy::reference)
817
- .def("globalInstancePaths", &IInstanceManager::globalInstancePaths);
+ .def("globalInstancePaths", &IInstanceManager::globalInstancePaths)
818
+ .def("getGlobalInstance", &IInstanceManager::getGlobalInstance,
819
+ py::return_value_policy::reference);
820
}
821
822
void add_idownload_manager_classes(py::module_ m)
0 commit comments