//! Copyright (C) Call of Nil contributors //! SPDX-License-Identifier: AGPL-3.0-only import { ArmyId } from './ArmyId'; import { ArmyPersonnel } from './ArmyPersonnel'; import { ArmyState } from './ArmyState'; import { Ruler } from './Ruler'; export type Army = { id: ArmyId; personnel: ArmyPersonnel; owner: Ruler; state: ArmyState; };