From 589325d91b29235f1cd0bc01ff2149a49825006e Mon Sep 17 00:00:00 2001 From: Tannin Date: Sat, 13 Dec 2014 16:47:11 +0100 Subject: [PATCH] - NCC installer can now discover files in other mods (thanks Reunion!) and knows the script extender version --- src/runner/uibasewrappers.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/runner/uibasewrappers.h b/src/runner/uibasewrappers.h index 1cd51c5..962ba64 100644 --- a/src/runner/uibasewrappers.h +++ b/src/runner/uibasewrappers.h @@ -203,6 +203,7 @@ struct IOrganizerWrapper: MOBase::IOrganizer, boost::python::wrapperget_override("profileName")(); } virtual QString profilePath() const { return this->get_override("profilePath")(); } virtual QString downloadsPath() const { return this->get_override("downloadsPath")(); } + virtual QString overwritePath() const { return this->get_override("overwritePath")(); } virtual MOBase::VersionInfo appVersion() const { return this->get_override("appVersion")(); } virtual MOBase::IModInterface *getMod(const QString &name) { return this->get_override("getMod")(name); } virtual MOBase::IModInterface *createMod(MOBase::GuessedValue &name) { return this->get_override("createMod")(name); }