| 46 | } |
| 47 | |
| 48 | void Window_Help::Clear() { |
| 49 | this->text = ""; |
| 50 | this->color = Font::ColorDefault; |
| 51 | this->align = Text::AlignLeft; |
| 52 | text_x_offset = 0; |
| 53 | contents->Clear(); |
| 54 | } |
| 55 | |
| 56 | void Window_Help::AddText(std::string text, int color, Text::Alignment align, bool halfwidthspace) { |
| 57 | std::string::size_type pos = 0; |
no outgoing calls
no test coverage detected