* Sets up a blank frame 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. */
| 29 | * @param y Y position in pixels. |
| 30 | */ |
| 31 | Frame::Frame(int width, int height, int x, int y) : Surface(width, height, x, y), _color(0), _bg(0), _thickness(5), _contrast(false) |
| 32 | { |
| 33 | } |
| 34 | |
| 35 | /** |
| 36 | * |
nothing calls this directly
no outgoing calls
no test coverage detected