OpenMW
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
debugwindow.hpp
Go to the documentation of this file.
1 #ifndef OPENMW_MWGUI_DEBUGWINDOW_H
2 #define OPENMW_MWGUI_DEBUGWINDOW_H
3 
4 #include "windowbase.hpp"
5 
6 namespace MWGui
7 {
8 
9  class DebugWindow : public WindowBase
10  {
11  public:
12  DebugWindow();
13 
14  void onFrame(float dt);
15 
16  private:
17  MyGUI::TabControl* mTabControl;
18 
19  MyGUI::EditBox* mBulletProfilerEdit;
20  };
21 
22 }
23 
24 #endif
DebugWindow()
Definition: debugwindow.cpp:81
Definition: debugwindow.hpp:9
Definition: windowbase.hpp:16
MyGUI::TabControl * mTabControl
Definition: debugwindow.hpp:17
MyGUI::EditBox * mBulletProfilerEdit
Definition: debugwindow.hpp:19
void onFrame(float dt)
Definition: debugwindow.cpp:102