mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-29 01:15:31 +00:00
26 lines
408 B
C++
26 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
|
|
|