diff options
author | Jared Adams <jaxad0127@gmail.com> | 2009-10-14 10:21:50 -0600 |
---|---|---|
committer | Jared Adams <jaxad0127@gmail.com> | 2009-10-14 10:21:50 -0600 |
commit | b4befc985875588a4b454b112b8b79a94c26e5e6 (patch) | |
tree | 05f0d7cc50934b076e37fe005533cee1abf872f7 /src/gui/debugwindow.h | |
parent | d51d85d49eb0429ba170c13de4ee8b4c277b7937 (diff) | |
download | mana-b4befc985875588a4b454b112b8b79a94c26e5e6.tar.gz mana-b4befc985875588a4b454b112b8b79a94c26e5e6.tar.bz2 mana-b4befc985875588a4b454b112b8b79a94c26e5e6.tar.xz mana-b4befc985875588a4b454b112b8b79a94c26e5e6.zip |
Add more detail to DebugWindow
Diffstat (limited to 'src/gui/debugwindow.h')
-rw-r--r-- | src/gui/debugwindow.h | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/src/gui/debugwindow.h b/src/gui/debugwindow.h index e4c45bde..50a5fc06 100644 --- a/src/gui/debugwindow.h +++ b/src/gui/debugwindow.h @@ -24,6 +24,8 @@ #include "gui/widgets/window.h" +class Label; + /** * The debug window. * @@ -43,9 +45,13 @@ class DebugWindow : public Window void logic(); private: - gcn::Label *mMusicFileLabel, *mMapLabel, *mMinimapLabel; - gcn::Label *mTileMouseLabel, *mFPSLabel; - gcn::Label *mParticleCountLabel; + Label *mMusicFileLabel, *mMapLabel, *mMinimapLabel; + Label *mTileMouseLabel, *mFPSLabel; + Label *mParticleCountLabel, *mParticleDetailLabel; + Label *mAmbientDetailLabel; + + + std::string mFPSText; }; extern DebugWindow *debugWindow; |