diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-05-21 23:53:20 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-05-22 12:23:26 +0300 |
commit | 5dd673aa6abe2a070de45388a885d03fcc037d70 (patch) | |
tree | b5bf80507501e7b77c4dbdbfc39989ebd6209a20 /src/client.h | |
parent | 66bc17a4099842f9a54c13c183842f561d63963f (diff) | |
download | plus-5dd673aa6abe2a070de45388a885d03fcc037d70.tar.gz plus-5dd673aa6abe2a070de45388a885d03fcc037d70.tar.bz2 plus-5dd673aa6abe2a070de45388a885d03fcc037d70.tar.xz plus-5dd673aa6abe2a070de45388a885d03fcc037d70.zip |
allow open updater window from inside game.
Diffstat (limited to 'src/client.h')
-rw-r--r-- | src/client.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/client.h b/src/client.h index 15a851eb1..3d414d466 100644 --- a/src/client.h +++ b/src/client.h @@ -228,6 +228,15 @@ public: std::string getLogFileName() const A_WARN_UNUSED { return mLogFileName; } + std::string getUpdateHost() const A_WARN_UNUSED + { return mUpdateHost; } + + std::string getOldUpdates() const A_WARN_UNUSED + { return mOldUpdates; } + + const Options &getOptions() const A_WARN_UNUSED + { return mOptions; } + const std::vector<std::string> &getMirrors() const A_WARN_UNUSED { return mCurrentServer.updateMirrors; } |