mirror of https://github.com/bsnes-emu/bsnes.git
11 lines
338 B
C++
11 lines
338 B
C++
namespace phoenix {
|
|
|
|
struct pMessageWindow {
|
|
static MessageWindow::Response error(MessageWindow::State& state);
|
|
static MessageWindow::Response information(MessageWindow::State& state);
|
|
static MessageWindow::Response question(MessageWindow::State& state);
|
|
static MessageWindow::Response warning(MessageWindow::State& state);
|
|
};
|
|
|
|
}
|