diff --git a/src/runner/uibasewrappers.h b/src/runner/uibasewrappers.h index 962ba64..7c035df 100644 --- a/src/runner/uibasewrappers.h +++ b/src/runner/uibasewrappers.h @@ -268,6 +268,7 @@ struct IModInterfaceWrapper: MOBase::IModInterface, boost::python::wrapperget_override("setNewestVersion")(version); } virtual void setIsEndorsed(bool endorsed) { this->get_override("setIsEndorsed")(endorsed); } virtual void setNexusID(int nexusID) { this->get_override("setNexusID")(nexusID); } + virtual void setInstallationFile(const QString &fileName) { this->get_override("setInstallationFile")(fileName); } virtual void addNexusCategory(int categoryID) { this->get_override("addNexusCategory")(categoryID); } virtual bool setName(const QString &name) { return this->get_override("setName")(name); } virtual bool remove() { return this->get_override("remove")(); }