openmw-tes3coop/apps/openmw/mwgui/messagebox.hpp

26 lines
450 B
C++
Raw Normal View History

#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