Skip to content

Commit

Permalink
Update wrappers for uibase blueprint changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Silarn committed Oct 1, 2024
1 parent e11d5ec commit 889e9d8
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions src/mobase/wrappers/game_features.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -89,11 +89,15 @@ namespace mo2::python {
}
bool lightPluginsAreSupported() override
{
PYBIND11_OVERRIDE_PURE(bool, GamePlugins, lightPluginsAreSupported, );
PYBIND11_OVERRIDE(bool, GamePlugins, lightPluginsAreSupported, );
}
bool mediumPluginsAreSupported() override
{
PYBIND11_OVERRIDE_PURE(bool, GamePlugins, mediumPluginsAreSupported, );
PYBIND11_OVERRIDE(bool, GamePlugins, mediumPluginsAreSupported, );
}
bool blueprintPluginsAreSupported() override
{
PYBIND11_OVERRIDE(bool, GamePlugins, blueprintPluginsAreSupported, );
}
};

Expand Down Expand Up @@ -259,7 +263,8 @@ namespace mo2::python {
.def("readPluginLists", &GamePlugins::readPluginLists, "plugin_list"_a)
.def("getLoadOrder", &GamePlugins::getLoadOrder)
.def("lightPluginsAreSupported", &GamePlugins::lightPluginsAreSupported)
.def("mediumPluginsAreSupported", &GamePlugins::mediumPluginsAreSupported);
.def("mediumPluginsAreSupported", &GamePlugins::mediumPluginsAreSupported)
.def("blueprintPluginsAreSupported", &GamePlugins::blueprintPluginsAreSupported);

// LocalSavegames

Expand Down

0 comments on commit 889e9d8

Please sign in to comment.