1 #ifndef DIALOG_H_DEFINED 2 #define DIALOG_H_DEFINED 20 void show(std::string message,
bool pressAnyKey=
false);
28 bool askBool(std::string question, std::string title=
"",
bool default_value=
false);
31 #endif //DIALOG_H_DEFINED bool askBool(std::string question, std::string title="", bool default_value=false)
Spawns a Dialog box asking for a yes-or-no #question.
Quick-and-dirty functions to show GUI-like dialogs on the screen.
void show(std::string message, bool pressAnyKey=false)
Shows a message on the screen.