//! Copyright (C) Call of Nil contributors //! SPDX-License-Identifier: AGPL-3.0-only import { BuildingLevel } from './BuildingLevel'; import { Cost } from './Cost'; import { Maintenance } from './Maintenance'; import { Resources } from './Resources'; import { Score } from './Score'; import { Workforce } from './Workforce'; /** * Information about a building at a given level. */ export type BuildingStats = { level: BuildingLevel; cost: Cost; resources: Resources; maintenance: Maintenance; workforce: Workforce; score: Score; };