added plugin interface to add/remove/list categories to/from/of mods

This commit is contained in:
Tannin
2015-06-10 22:09:32 +02:00
parent d8f49b3906
commit f29d9ac993
2 changed files with 16 additions and 10 deletions
+3
View File
@@ -773,6 +773,9 @@ BOOST_PYTHON_MODULE(mobase)
.def("setIsEndorsed", bpy::pure_virtual(&IModInterface::setIsEndorsed))
.def("setNexusID", bpy::pure_virtual(&IModInterface::setNexusID))
.def("addNexusCategory", bpy::pure_virtual(&IModInterface::addNexusCategory))
.def("addCategory", bpy::pure_virtual(&IModInterface::addCategory))
.def("removeCategory", bpy::pure_virtual(&IModInterface::removeCategory))
.def("categories", bpy::pure_virtual(&IModInterface::categories))
.def("setName", bpy::pure_virtual(&IModInterface::setName))
.def("remove", bpy::pure_virtual(&IModInterface::remove))
;