diff options
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; |