//! Copyright (C) Call of Nil contributors //! SPDX-License-Identifier: AGPL-3.0-only import { Army } from './Army'; import { ContinentIndex } from './ContinentIndex'; import { ContinentSize } from './ContinentSize'; import { Maneuver } from './Maneuver'; import { ManeuverId } from './ManeuverId'; export type Military = { continent: { [key in ContinentIndex]: Array; }; continentSize: ContinentSize; maneuvers: { [key in ManeuverId]: Maneuver; }; };