| 1253 | } |
| 1254 | |
| 1255 | void async_dialog_text_input(const char* const message, const char* const text, |
| 1256 | const std::function<void(char* newText)> action) |
| 1257 | { |
| 1258 | #ifndef HEADLESS_BEHAVIOUR |
| 1259 | asyncDialog::textInput(message, text, action); |
| 1260 | #endif |
| 1261 | } |
nothing calls this directly
no test coverage detected