//! Copyright (C) Call of Nil contributors //! SPDX-License-Identifier: AGPL-3.0-only import { BuildingLevel } from './BuildingLevel'; export type InfrastructureRequirements = { academy: BuildingLevel; farm: BuildingLevel; ironMine: BuildingLevel; prefecture: BuildingLevel; quarry: BuildingLevel; sawmill: BuildingLevel; silo: BuildingLevel; stable: BuildingLevel; wall: BuildingLevel; warehouse: BuildingLevel; workshop: BuildingLevel; };