* Sets up a blank text with the specified size and position. * @param width Width in pixels. * @param height Height in pixels. * @param x X position in pixels. * @param y Y position in pixels. */
| 37 | * @param y Y position in pixels. |
| 38 | */ |
| 39 | Text::Text(int width, int height, int x, int y) : Surface(width, height, x, y), _big(0), _small(0), _font(0), _lang(0), _text(L""), _wrap(false), _invert(false), _contrast(false), _indent(false), _align(ALIGN_LEFT), _valign(ALIGN_TOP), _color(0), _color2(0) |
| 40 | { |
| 41 | } |
| 42 | |
| 43 | /** |
| 44 | * |
nothing calls this directly
no outgoing calls
no test coverage detected