- started on a refactoring moving functionality out of the MainWindow class

- started on support for game-plugins
This commit is contained in:
Tannin
2014-11-21 14:45:30 +01:00
parent 5da6a9d3bd
commit dec620b5b7
2 changed files with 2 additions and 0 deletions
+1
View File
@@ -727,6 +727,7 @@ BOOST_PYTHON_MODULE(mobase)
.def("startApplication", bpy::pure_virtual(&IOrganizer::startApplication), bpy::return_value_policy<bpy::return_by_value>())
.def("waitForApplication", bpy::pure_virtual(&IOrganizer::waitForApplication), bpy::return_value_policy<bpy::return_by_value>())
.def("onAboutToRun", bpy::pure_virtual(&IOrganizer::onAboutToRun))
.def("onFinishedRun", bpy::pure_virtual(&IOrganizer::onFinishedRun))
.def("onModInstalled", bpy::pure_virtual(&IOrganizer::onModInstalled))
.def("refreshModList", bpy::pure_virtual(&IOrganizer::refreshModList))
;