//! Copyright (C) Call of Nil contributors //! SPDX-License-Identifier: AGPL-3.0-only import { InfluenceResourceCost } from './InfluenceResourceCost'; import { InfrastructureStats } from './InfrastructureStats'; import { MarketPriceTable } from './MarketPriceTable'; export type WorldStats = { infrastructure: InfrastructureStats; marketPriceTable: MarketPriceTable; influenceResourceCost: InfluenceResourceCost; };