* Sets up a blank bar 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. */
| 31 | * @param y Y position in pixels. |
| 32 | */ |
| 33 | Bar::Bar(int width, int height, int x, int y) : Surface(width, height, x, y), _color(0), _color2(0), _scale(0), _max(0), _value(0), _value2(0), _invert(false), _secondOnTop(true) |
| 34 | { |
| 35 | |
| 36 | } |
| 37 | |
| 38 | /** |
| 39 | * |
nothing calls this directly
no outgoing calls
no test coverage detected