// we add an engineer unit to the capital province
int capital = properties.getInt(KEY_CAPITAL);
for (Province province : provinces) {
if (province.getID() == capital) {
MapItem unit = new MapItem(MapItemType.Engineer, province.getTownPosition());
units.addElement(unit);
}
}
}