mirror of https://github.com/bsnes-emu/bsnes.git
11 lines
367 B
C++
11 lines
367 B
C++
|
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;
|
||
|
};
|
||
|
|
||
|
}
|