for (int y = 0; y < height; y++) {
for (int x = 0; x < width; x++) {
initializeHex(x, y, false);
}
}
processBoardEvent(new BoardEvent(this, null,
BoardEvent.BOARD_CHANGED_ALL_HEXES));
// good time to ensure hex cache
IdealHex.ensureCacheSize(width + 1, height + 1);
} // End private void initializeAll()