Skip to content

Commit

Permalink
Add author and description methods to IPluginList (#135)
Browse files Browse the repository at this point in the history
  • Loading branch information
JonathanFeenstra authored Sep 28, 2024
1 parent e11d5ec commit 4409375
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/mobase/wrappers/basic_classes.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -323,6 +323,9 @@ namespace mo2::python {
.def("hasLightExtension", &IPluginList::hasLightExtension, "name"_a)
.def("hasNoRecords", &IPluginList::hasNoRecords, "name"_a)

.def("author", &IPluginList::author, "name"_a)
.def("description", &IPluginList::description, "name"_a)

// Kept but deprecated for backward compatibility:
.def(
"onPluginStateChanged",
Expand Down

0 comments on commit 4409375

Please sign in to comment.