Replace GameInfo::path with iPluginGame::gameDirectory (or dataDirectory where applicable)

Note: this isn''t ideal as it's not backward compatible
This commit is contained in:
Thomas Tanner
2015-11-21 16:41:28 +00:00
parent 542ef73a30
commit cb5d3b4e62
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -707,7 +707,7 @@ BOOST_PYTHON_MODULE(mobase)
bpy::class_<IGameInfoWrapper, boost::noncopyable>("GameInfo")
.def("type", bpy::pure_virtual(&IGameInfo::type))
.def("path", bpy::pure_virtual(&IGameInfo::path))
// .def("path", bpy::pure_virtual(&IGameInfo::path))
// .def("binaryName", bpy::pure_virtual(&IGameInfo::binaryName))
;