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

Method Cursor

src/Interface/Cursor.cpp:37–39  ·  view source on GitHub ↗

* Sets up a cursor with the specified size and position * and hides the system cursor. * @note The size and position don't really matter since * it's a 9x13 shape, they're just there for inheritance. * @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

35 * @param y Y position in pixels.
36 */
37Cursor::Cursor(int width, int height, int x, int y) : Surface(width, height, x, y), _color(0)
38{
39}
40
41/**
42 *

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected