* 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. */
| 35 | * @param y Y position in pixels. |
| 36 | */ |
| 37 | Cursor::Cursor(int width, int height, int x, int y) : Surface(width, height, x, y), _color(0) |
| 38 | { |
| 39 | } |
| 40 | |
| 41 | /** |
| 42 | * |
nothing calls this directly
no outgoing calls
no test coverage detected