mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-09 21:42:13 +00:00
20 lines
244 B
C++
20 lines
244 B
C++
|
#ifndef MWGUI_WAIT_DIALOG_H
|
||
|
#define MWGUI_WAIT_DIALOG_H
|
||
|
|
||
|
#include "window_base.hpp"
|
||
|
|
||
|
namespace MWGui
|
||
|
{
|
||
|
|
||
|
class WaitDialog : public WindowBase
|
||
|
{
|
||
|
public:
|
||
|
WaitDialog(MWBase::WindowManager& parWindowManager);
|
||
|
|
||
|
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif
|