super.zoomChanged(squareSize);
}
private MeeplePositionedImage createMeepleImage(Class<? extends Meeple> type, Color c, FeaturePointer fp) {
Feature feature = getGame().getBoard().get(fp);
ImmutablePoint offset = getClient().getResourceManager().getMeeplePlacement(feature.getTile(), type, fp.getLocation());
Image image = getClient().getFigureTheme().getFigureImage(type, c, getExtraDecoration(type, fp));
if (fp.getLocation() == Location.ABBOT) {
image = rotate(image, 90);
}
return new MeeplePositionedImage(type, fp, offset, image, feature instanceof Bridge);