mirror of https://github.com/bsnes-emu/bsnes.git
15 lines
408 B
C++
15 lines
408 B
C++
|
#if defined(Hiro_MessageWindow)
|
||
|
|
||
|
namespace hiro {
|
||
|
|
||
|
struct pMessageWindow {
|
||
|
static auto error(MessageWindow::State& state) -> MessageWindow::Response;
|
||
|
static auto information(MessageWindow::State& state) -> MessageWindow::Response;
|
||
|
static auto question(MessageWindow::State& state) -> MessageWindow::Response;
|
||
|
static auto warning(MessageWindow::State& state) -> MessageWindow::Response;
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif
|