Add setGameName to the mod interface

This commit is contained in:
LostDragonist
2019-02-22 22:16:17 -06:00
parent caee1fb7f6
commit 97a20d522a
2 changed files with 2 additions and 0 deletions
+1
View File
@@ -1069,6 +1069,7 @@ BOOST_PYTHON_MODULE(mobase)
.def("addCategory", bpy::pure_virtual(&IModInterface::addCategory))
.def("removeCategory", bpy::pure_virtual(&IModInterface::removeCategory))
.def("categories", bpy::pure_virtual(&IModInterface::categories))
.def("setGameName", bpy::pure_virtual(&IModInterface::setGameName))
.def("setName", bpy::pure_virtual(&IModInterface::setName))
.def("remove", bpy::pure_virtual(&IModInterface::remove))
;