public BallComponent(final String name, final SubTex tex, final int width, final int height, final int areaWidth,
final int areaHeight) {
super("", tex);
setName(name);
setIconDimensions(new Dimension(width, height));
_areaWidth = areaWidth;
_areaHeight = areaHeight;
_ball = new Ball();
_ball.setRandomPositionIn(_areaWidth, _areaHeight);
setLocalXY((int) _ball._x, (int) _ball._y);