* Sets up a mini base view 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. */
| 37 | * @param y Y position in pixels. |
| 38 | */ |
| 39 | MiniBaseView::MiniBaseView(int width, int height, int x, int y) : InteractiveSurface(width, height, x, y), _bases(), _texture(0), _base(0), _hoverBase(0) |
| 40 | { |
| 41 | } |
| 42 | |
| 43 | /** |
| 44 | * |
nothing calls this directly
no outgoing calls
no test coverage detected