add `draw_multiline_text` and `draw_multiline_text_ex`
This PR adds two functions for drawing multiline text that breaks on newlines. The new draw_multiline_text and draw_multiline_text_ex functions mirror the existing signatures of the draw_text and draw_text_ex functions.
A different option would be to add a field pub is_multiline: bool to TextParams, which would avoid having two new functions, but that would be a breaking change and would have to wait for 0.5.
I do not know enough about fonts to properly comment on this, but, apparently, there are some hints made by font designers for multiline rendering, for example this field looks relevant? https://docs.rs/fontdue/latest/fontdue/struct.LineMetrics.html#structfield.line_gap
I updated the code to use this fields values if a custom font is given, the font specifies such a distance and the caller doesn't set a line distance manually.
Thanks for PR!