import { PureMessageKey } from './types'; /** * The basic data of an economical system. */ export default interface EconomicSystem { /** * A unique identifier, used to retrieve the economical system used for a given set. */ readonly id: string; /** * The language entry containing the name of the economic system. */ readonly name: PureMessageKey; /** * The cost (in money unit) of a single low value. */ readonly valueCost: number; }