* Sets up a blank interactive surface 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. */
| 33 | * @param y Y position in pixels. |
| 34 | */ |
| 35 | InteractiveSurface::InteractiveSurface(int width, int height, int x, int y) : Surface(width, height, x, y), _buttonsPressed(0), _in(0), _over(0), _out(0), _isHovered(false), _isFocused(true), _listButton(false) |
| 36 | { |
| 37 | } |
| 38 | |
| 39 | /** |
| 40 | * |
nothing calls this directly
no outgoing calls
no test coverage detected