//! Copyright (C) Call of Nil contributors //! SPDX-License-Identifier: AGPL-3.0-only import { Food } from './Food'; /** * Maintenance tax of an entity. * * Its value is equivalent to a percentage of the [base cost]. * * [base cost]: crate::resources::cost::Cost */ export type Maintenance = Food;