mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-07 03:54:40 +00:00
27 lines
408 B
C++
27 lines
408 B
C++
|
#ifndef MWGUI_SETTINGS_H
|
||
|
#define MWGUI_SETTINGS_H
|
||
|
|
||
|
#include "window_base.hpp"
|
||
|
|
||
|
namespace MWGui
|
||
|
{
|
||
|
class WindowManager;
|
||
|
}
|
||
|
|
||
|
namespace MWGui
|
||
|
{
|
||
|
class SettingsWindow : public WindowBase
|
||
|
{
|
||
|
public:
|
||
|
SettingsWindow(WindowManager& parWindowManager);
|
||
|
|
||
|
protected:
|
||
|
MyGUI::Button* mOkButton;
|
||
|
|
||
|
void onOkButtonClicked(MyGUI::Widget* _sender);
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif
|
||
|
|