mirror of https://github.com/bsnes-emu/bsnes.git
16 lines
641 B
C++
16 lines
641 B
C++
|
MessageWindow::Response pMessageWindow::information(Window &parent, const string &text, MessageWindow::Buttons buttons) {
|
||
|
return MessageWindow::Response::Ok;
|
||
|
}
|
||
|
|
||
|
MessageWindow::Response pMessageWindow::question(Window &parent, const string &text, MessageWindow::Buttons buttons) {
|
||
|
return MessageWindow::Response::Ok;
|
||
|
}
|
||
|
|
||
|
MessageWindow::Response pMessageWindow::warning(Window &parent, const string &text, MessageWindow::Buttons buttons) {
|
||
|
return MessageWindow::Response::Ok;
|
||
|
}
|
||
|
|
||
|
MessageWindow::Response pMessageWindow::critical(Window &parent, const string &text, MessageWindow::Buttons buttons) {
|
||
|
return MessageWindow::Response::Ok;
|
||
|
}
|