diff options
Diffstat (limited to 'src/nxmaccessmanager.h')
| -rw-r--r-- | src/nxmaccessmanager.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/nxmaccessmanager.h b/src/nxmaccessmanager.h index a03dbe36..2a016cad 100644 --- a/src/nxmaccessmanager.h +++ b/src/nxmaccessmanager.h @@ -27,6 +27,7 @@ along with Mod Organizer. If not, see <http://www.gnu.org/licenses/>. #include <QProgressDialog>
#include <set>
+namespace MOBase { class IPluginGame; }
/**
* @brief access manager extended to handle nxm links
@@ -84,7 +85,9 @@ private slots: void loginError(QNetworkReply::NetworkError errorCode);
void loginTimeout();
-public slots:
+public:
+ //This would be a slot but the NexusInterface code calls this
+ void managedGameChanged(MOBase::IPluginGame const *game);
protected:
@@ -127,6 +130,8 @@ private: LOGIN_VALID
} m_LoginState = LOGIN_NOT_CHECKED;
+ MOBase::IPluginGame const *m_Game;
+
};
#endif // NXMACCESSMANAGER_H
|
