diff options
author | Jared Adams <jaxad0127@gmail.com> | 2009-03-10 12:43:56 -0600 |
---|---|---|
committer | Ira Rice <irarice@gmail.com> | 2009-03-10 12:59:03 -0600 |
commit | 4676d0fe6ee938031ce13a65927718f9b53810cf (patch) | |
tree | e0cbcf26a8814d69826627528b7eb813ae789ed2 /src/gui/setup.h | |
parent | cabb9735f2e31b9f1f64b2496e1775d54861da36 (diff) | |
download | mana-4676d0fe6ee938031ce13a65927718f9b53810cf.tar.gz mana-4676d0fe6ee938031ce13a65927718f9b53810cf.tar.bz2 mana-4676d0fe6ee938031ce13a65927718f9b53810cf.tar.xz mana-4676d0fe6ee938031ce13a65927718f9b53810cf.zip |
Remove some SetupWindow weirdness
Diffstat (limited to 'src/gui/setup.h')
-rw-r--r-- | src/gui/setup.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/gui/setup.h b/src/gui/setup.h index 9f1bafc7..663bdfcb 100644 --- a/src/gui/setup.h +++ b/src/gui/setup.h @@ -56,8 +56,16 @@ class Setup : public Window, public gcn::ActionListener */ void action(const gcn::ActionEvent &event); + /** + * Enables the reset button when in game. + */ + void setInGame(bool inGame); + private: std::list<SetupTab*> mTabs; + gcn::Button* mResetWindows; }; +extern Setup* setupWindow; + #endif |