* mapSettings.getBoardHeight()];
int index = 0;
for (int h = 0; h < mapSettings.getBoardHeight(); h++) {
for (int w = 0; w < mapSettings.getBoardWidth(); w++) {
if(mapSettings.getMedium() == MapSettings.MEDIUM_SPACE) {
nb[index++] = new Hex(0,"space:1",mapSettings.getTheme());
} else {
nb[index++] = new Hex(elevationMap[w][h], "", mapSettings
.getTheme());
}
}
}