MCPcopy Create free account
hub / github.com/OpenXcom/OpenXcom / Text

Method Text

src/Interface/Text.cpp:39–41  ·  view source on GitHub ↗

* 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. */

Source from the content-addressed store, hash-verified

37 * @param y Y position in pixels.
38 */
39Text::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 *

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected