mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-12 03:36:32 +00:00
25 lines
351 B
C++
25 lines
351 B
C++
|
#ifndef OPENMW_MWGUI_DEBUGWINDOW_H
|
||
|
#define OPENMW_MWGUI_DEBUGWINDOW_H
|
||
|
|
||
|
#include "windowbase.hpp"
|
||
|
|
||
|
namespace MWGui
|
||
|
{
|
||
|
|
||
|
class DebugWindow : public WindowBase
|
||
|
{
|
||
|
public:
|
||
|
DebugWindow();
|
||
|
|
||
|
void onFrame(float dt);
|
||
|
|
||
|
private:
|
||
|
MyGUI::TabControl* mTabControl;
|
||
|
|
||
|
MyGUI::EditBox* mBulletProfilerEdit;
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif
|