mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 02:49:55 +00:00
26 lines
450 B
C++
26 lines
450 B
C++
|
#ifndef MWGUI_MESSAGE_BOX_H
|
||
|
#define MWGUI_MESSAGE_BOX_H
|
||
|
|
||
|
#include "window_base.hpp"
|
||
|
|
||
|
namespace MWGui
|
||
|
{
|
||
|
class WindowManager;
|
||
|
}
|
||
|
|
||
|
namespace MWGui
|
||
|
{
|
||
|
using namespace MyGUI;
|
||
|
|
||
|
class WindowManager;
|
||
|
|
||
|
class MessageBoxManager
|
||
|
{
|
||
|
public:
|
||
|
void createMessageBox (const std::string& message);
|
||
|
void createInteractiveMessageBox (const std::string& message, const std::vector<std::string>& buttons);
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif
|