| 397 | } |
| 398 | |
| 399 | void beginSendChatMessage(Window& self) |
| 400 | { |
| 401 | WindowManager::close(WindowType::multiplayer); |
| 402 | |
| 403 | auto args = FormatArguments::common(); |
| 404 | args.push(StringIds::the_other_player); |
| 405 | |
| 406 | // TODO: convert this to a builder pattern, with chainable functions to set the different string ids and arguments |
| 407 | TextInput::openTextInput(&self, StringIds::chat_title, StringIds::chat_instructions, StringIds::empty, Widx::chat_btn, args); |
| 408 | } |
| 409 | |
| 410 | static void sub_43918F(const char* string) |
| 411 | { |
no test coverage detected