forked from mirror/openmw-tes3mp
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
|