Add support for version dependency checks

This commit is contained in:
Thomas Tanner
2015-11-01 18:27:03 +00:00
parent 3648690c5e
commit 88846e52f5
2 changed files with 4 additions and 0 deletions
+2
View File
@@ -702,6 +702,8 @@ BOOST_PYTHON_MODULE(mobase)
.def("type", bpy::pure_virtual(&IGameInfo::type))
.def("path", bpy::pure_virtual(&IGameInfo::path))
.def("binaryName", bpy::pure_virtual(&IGameInfo::binaryName))
.def("version", bpy::pure_virtual(&IGameInfo::version))
.def("extenderVersion", bpy::pure_virtual(&IGameInfo::extenderVersion))
;
bpy::class_<IOrganizerWrapper, boost::noncopyable>("IOrganizer")