Skip to main content

nil_core/world/infrastructure/building/
stable.rs

1// Copyright (C) Call of Nil contributors
2// SPDX-License-Identifier: AGPL-3.0-only
3
4use crate::continent::Coord;
5use crate::decl_world_recruit_order_fn;
6use crate::error::{Error, Result};
7use crate::infrastructure::building::stable::recruit_queue::{
8  StableRecruitOrderId,
9  StableRecruitOrderRequest,
10};
11use crate::world::World;
12
13decl_world_recruit_order_fn!(Stable);