* Sets up an image button 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. */
| 30 | * @param y Y position in pixels. |
| 31 | */ |
| 32 | ImageButton::ImageButton(int width, int height, int x, int y) : InteractiveSurface(width, height, x, y), _color(0), _group(0), _inverted(false) |
| 33 | { |
| 34 | } |
| 35 | |
| 36 | /** |
| 37 | * |
nothing calls this directly
no outgoing calls
no test coverage detected