mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 01:49:54 +00:00
24 lines
424 B
C++
24 lines
424 B
C++
#ifndef MWGUI_WINDOW_BASE_H
|
|
#define MWGUI_WINDOW_BASE_H
|
|
|
|
#include <openengine/gui/layout.hpp>
|
|
|
|
namespace MWGui
|
|
{
|
|
class WindowManager;
|
|
|
|
class WindowBase: public OEngine::GUI::Layout
|
|
{
|
|
public:
|
|
WindowBase(const std::string& parLayout, WindowManager& parWindowManager);
|
|
|
|
virtual void open();
|
|
void center();
|
|
|
|
protected:
|
|
WindowManager& mWindowManager;
|
|
};
|
|
}
|
|
|
|
#endif
|
|
|