summaryrefslogtreecommitdiff
path: root/src/gui/debugwindow.h
diff options
context:
space:
mode:
authorJared Adams <jaxad0127@gmail.com>2009-10-14 10:21:50 -0600
committerJared Adams <jaxad0127@gmail.com>2009-10-14 10:21:50 -0600
commitb4befc985875588a4b454b112b8b79a94c26e5e6 (patch)
tree05f0d7cc50934b076e37fe005533cee1abf872f7 /src/gui/debugwindow.h
parentd51d85d49eb0429ba170c13de4ee8b4c277b7937 (diff)
downloadmana-client-b4befc985875588a4b454b112b8b79a94c26e5e6.tar.gz
mana-client-b4befc985875588a4b454b112b8b79a94c26e5e6.tar.bz2
mana-client-b4befc985875588a4b454b112b8b79a94c26e5e6.tar.xz
mana-client-b4befc985875588a4b454b112b8b79a94c26e5e6.zip
Add more detail to DebugWindow
Diffstat (limited to 'src/gui/debugwindow.h')
-rw-r--r--src/gui/debugwindow.h12
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;