//! Copyright (C) Call of Nil contributors //! SPDX-License-Identifier: AGPL-3.0-only import { BotId } from './BotId'; import { PlayerId } from './PlayerId'; import { PrecursorId } from './PrecursorId'; export type Ruler = { "kind": "bot"; id: BotId; } | { "kind": "player"; id: PlayerId; } | { "kind": "precursor"; id: PrecursorId; };